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 Maverick RA-100 & RA-425 radios #711

Merged
merged 1 commit into from
Jul 10, 2023
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
25 changes: 25 additions & 0 deletions chirp/drivers/h777.py
Original file line number Diff line number Diff line change
Expand Up @@ -734,3 +734,28 @@ class BF1904Radio(BF1901Radio):
def match_model(cls, filedata, filename):
# This model is only ever matched via metadata
return False


@directory.register
class MAVERICKRA100Radio(BFM4Radio):
VENDOR = "Maverick"
MODEL = "RA-100"
ALIASES = []

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


@directory.register
class MAVERICKRA425Radio(BF1904Radio):
VENDOR = "Maverick"
MODEL = "RA-425"
ALIASES = []
_has_fm = False

@classmethod
def match_model(cls, filedata, filename):
# This model is only ever matched via metadata
return False
8 changes: 5 additions & 3 deletions tests/Python3_Driver_Testing.md
Original file line number Diff line number Diff line change
Expand Up @@ -217,6 +217,8 @@
| <a name="Leixen_VV-898"></a> Leixen_VV-898 | [Implied by Jetstream_JT270MH](#user-content-Jetstream_JT270MH) | 13-Dec-2022 | Yes | 0.18% |
| <a name="Leixen_VV-898S"></a> Leixen_VV-898S | [@READ10](https://github.com/READ10) | 19-Dec-2022 | Yes | 0.10% |
| <a name="MTC_UV-5R-3"></a> MTC_UV-5R-3 | [Implied by BTECH_UV-5X3](#user-content-BTECH_UV-5X3) | 9-Dec-2022 | Yes | 0.02% |
| <a name="Maverick_RA-100"></a> Maverick_RA-100 | [@cetinajero](https://github.com/cetinajero) | 7-Jul-2023 | Yes | |
| <a name="Maverick_RA-425"></a> Maverick_RA-425 | [@cetinajero](https://github.com/cetinajero) | 7-Jul-2023 | Yes | |
| <a name="Midland_DBR2500"></a> Midland_DBR2500 | [Implied by Retevis_RT95](#user-content-Retevis_RT95) | 13-Nov-2022 | Yes | 0.05% |
| <a name="Polmar_DB-50M"></a> Polmar_DB-50M | [Implied by AnyTone_5888UV](#user-content-AnyTone_5888UV) | 9-Dec-2022 | Yes | 0.03% |
| <a name="Powerwerx_DB-750X"></a> Powerwerx_DB-750X | [Implied by AnyTone_5888UV](#user-content-AnyTone_5888UV) | 9-Dec-2022 | Yes | 0.01% |
Expand Down Expand Up @@ -413,11 +415,11 @@
| <a name="Zastone_ZT-X6"></a> Zastone_ZT-X6 | [Implied by Retevis_RT22](#user-content-Retevis_RT22) | 9-Dec-2022 | Yes | 0.11% |
## Stats

**Drivers:** 410
**Drivers:** 412

**Tested:** 86% (355/55) (93% of usage stats)
**Tested:** 86% (357/55) (93% of usage stats)

**Byte clean:** 90% (370/40)
**Byte clean:** 90% (372/40)

## Meaning of this testing

Expand Down
2 changes: 2 additions & 0 deletions tests/py3_driver_testers.txt
Original file line number Diff line number Diff line change
Expand Up @@ -190,6 +190,8 @@ LUITON_LT-580_UHF,@KC9HI,8-Dec-2022
LUITON_LT-580_VHF,@KC9HI,8-Dec-2022
LUITON_LT-588UV,@KC9HI,11-Nov-2022
LUITON_LT-725UV,@KC9HI,11-Dec-2022
Maverick_RA-100,@cetinajero,7-Jul-2023
Maverick_RA-425,@cetinajero,7-Jul-2023
MTC_UV-5R-3,+BTECH_UV-5X3,9-Dec-2022
Midland_DBR2500,+Retevis_RT95,13-Nov-2022
Polmar_DB-50M,+AnyTone_5888UV,9-Dec-2022
Expand Down