mirror of
https://github.com/kk7ds/chirp
synced 2026-08-13 17:51:36 -04:00
baofeng_uv17Pro: Add Baofeng UV-28Plus
Add driver for the Baofeng UV-28Plus, a tri-band (VHF/220/UHF) radio with GPS, Bluetooth, AM airband receive, and three power levels (10W/5W/2W). Subclasses UV17ProGPS with UV21ProV2 band plan. Fixes #12085
This commit is contained in:
parent
74e1075fd8
commit
dc94198394
2 changed files with 13 additions and 0 deletions
|
|
@ -1687,6 +1687,19 @@ class UV21ProGPS(UV17ProGPS):
|
|||
MODES = UV21ProV2.MODES
|
||||
|
||||
|
||||
@directory.register
|
||||
class UV28Plus(UV17ProGPS):
|
||||
VENDOR = "Baofeng"
|
||||
MODEL = "UV-28Plus"
|
||||
|
||||
VALID_BANDS = UV21ProV2.VALID_BANDS
|
||||
MODES = UV21ProV2.MODES
|
||||
POWER_LEVELS = [chirp_common.PowerLevel("High", watts=10.00),
|
||||
chirp_common.PowerLevel("Low", watts=2.00),
|
||||
chirp_common.PowerLevel("Medium", watts=5.00)]
|
||||
_has_bt = True
|
||||
|
||||
|
||||
@directory.register
|
||||
class BF5RM(UV17Pro):
|
||||
VENDOR = "Baofeng"
|
||||
|
|
|
|||
BIN
tests/images/Baofeng_UV-28Plus.img
Normal file
BIN
tests/images/Baofeng_UV-28Plus.img
Normal file
Binary file not shown.
Loading…
Add table
Add a link
Reference in a new issue