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:
Tony Gies 2026-03-13 20:46:32 -05:00 committed by Dan Smith
parent 74e1075fd8
commit dc94198394
2 changed files with 13 additions and 0 deletions

View file

@ -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"

Binary file not shown.