Actions
Bug #11544
openRetevis RT22 - Fix POWER_LEVELS and VALID_BANDS
Status:
New
Priority:
Normal
Assignee:
-
Category:
-
Target version:
-
Start date:
09/16/2024
Due date:
% Done:
0%
Estimated time:
Chirp Version:
next
Model affected:
Retevis RT22
Platform:
MacOS
I read the instructions above:
Yes
Description
Retevis RT22, as per documentation sources, has
- Operating Frequency 400-480MHz
- Output Power <= 2W
The driver contains the following:
rf.valid_bands = [(400000000, 520000000)]
...
RT22_POWER_LEVELS = [chirp_common.PowerLevel("Low", watts=2.00),
chirp_common.PowerLevel("High", watts=5.00)]
As these devices are sold as PMR or FRS devices, I think both variables could take the following values:
rf.valid_bands = [(400000000, 480000000)]
...
RT22_POWER_LEVELS = [chirp_common.PowerLevel("Low", watts=0.50),
chirp_common.PowerLevel("High", watts=2.00)]
Documentation Sources:
Actions