1
0
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:
f4exb
2020-05-26 19:58:28 +02:00
parent 968bd75568
commit 51b6a715ee
4 changed files with 485 additions and 2 deletions
+25
View File
@@ -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"
}
}