mirror of
https://github.com/f4exb/sdrangel.git
synced 2026-06-12 02:40:02 -04:00
Scripts API: SuperScanner first implementation
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
"""
|
||||
Constants that refer to SDRangel software
|
||||
"""
|
||||
|
||||
# Device keys depending on hardware type (deviceHwType)
|
||||
DEVICE_TYPES = {
|
||||
"AirspyHF": {
|
||||
"settings": "airspyHFSettings",
|
||||
"cf_key": "centerFrequency",
|
||||
}
|
||||
}
|
||||
|
||||
# Channel keys depending on channel type (id)
|
||||
CHANNEL_TYPES = {
|
||||
"DSDDemod": {
|
||||
"settings": "DSDDemodSettings",
|
||||
"df_key": "inputFrequencyOffset",
|
||||
"mute_key": "audioMute"
|
||||
},
|
||||
"NFMDemod": {
|
||||
"settings": "NFMDemodSettings",
|
||||
"df_key": "inputFrequencyOffset",
|
||||
"mute_key": "audioMute"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user