Skip to content

Commit

Permalink
Add Baofeng BFT20D radio
Browse files Browse the repository at this point in the history
Fixes #11742
  • Loading branch information
kk7ds committed Jan 10, 2025
1 parent c4273f9 commit cd69e1b
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions chirp/drivers/baofeng_digital.py
Original file line number Diff line number Diff line change
Expand Up @@ -471,3 +471,16 @@ class BaofengW31D(BaofengDigital):
]
_serial_id = 0x04
_proto = PROTO_D


@directory.register
class BaofengBFT20D(BaofengDigital):
"""Baofeng BF-T20D"""
MODEL = 'BF-T20D'
VALID_BANDS = [(400000000, 480000000)]
POWER_LEVELS = [
chirp_common.PowerLevel("Low", watts=0.5),
chirp_common.PowerLevel("High", watts=2.00),
]
_serial_id = 0x05
_proto = PROTO_D

0 comments on commit cd69e1b

Please sign in to comment.