P-51/P-47 radios support.

This commit is contained in:
Khopa
2020-09-20 17:07:09 +02:00
parent 4031c9b978
commit 5042ac1789
2 changed files with 42 additions and 0 deletions

View File

@@ -120,6 +120,10 @@ RADIOS: List[Radio] = [
# Also capable of [103, 156) at 25 kHz intervals, but we can't do gaps.
Radio("FR 22", MHz(225), MHz(400), step=kHz(50)),
# P-51 / P-47 Radio
# 4 preset channels (A/B/C/D)
Radio("SCR522", MHz(100), MHz(156), step=kHz(25)),
Radio("R&S M3AR VHF", MHz(108), MHz(174), step=MHz(1)),
Radio("R&S M3AR UHF", MHz(225), MHz(400), step=MHz(1)),
]