Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add MaxTalker TK-6 and MT-8S aliases #1113

Merged
merged 1 commit into from
Sep 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions chirp/drivers/h777.py
Original file line number Diff line number Diff line change
Expand Up @@ -703,6 +703,19 @@ def match_model(cls, filedata, filename):
return False


@directory.register
class MT8SRadio(H777Radio):
VENDOR = "MaxTalker"
MODEL = "MT-8S"
ALIASES = []
_has_fm = False

@classmethod
def match_model(cls, filedata, filename):
# This model is only ever matched via metadata
return False


@directory.register
class BF1901Radio(H777Radio):
VENDOR = "Baofeng"
Expand Down
6 changes: 6 additions & 0 deletions chirp/drivers/uvk5.py
Original file line number Diff line number Diff line change
Expand Up @@ -2064,6 +2064,12 @@ class RA79Radio(UVK5Radio):
MODEL = "RA79"


@directory.register
class MaxTalkerTK6(UVK5Radio):
VENDOR = "MaxTalker"
MODEL = "TK-6"


@directory.register
@directory.detected_by(UVK5Radio)
class UVK5RestrictedRadio(UVK5RadioBase):
Expand Down
Loading