restructure config

This commit is contained in:
Jakob Ketterl
2021-03-31 00:00:38 +02:00
parent c6962b4f42
commit 170b720e48
5 changed files with 39 additions and 18 deletions

View File

@ -33,7 +33,7 @@ config_webrx: configuration options for OpenWebRX
"""
# configuration version. please only modify if you're able to perform the associated migration steps.
version = 6
version = 7
# NOTE: you can find additional information about configuring OpenWebRX in the Wiki:
# https://github.com/jketterl/openwebrx/wiki/Configuration-guide
@ -258,16 +258,18 @@ Note: if you experience audio underruns while CPU usage is 100%, you can:
#waterfall_colors = [0x0000FF, 0x00FF00, 0xFF0000]
### Waterfall calibration
#waterfall_levels = {"min": -88, "max": -20} # in dB
waterfall_auto_level_margin = {"min": 3, "max": 10, "min_range": 50}
#waterfall_auto_levels = {"min": -88, "max": -20} # in dB
waterfall_auto_levels = {"min": 3, "max": 10}
waterfall_auto_min_range = 50
# Note: When the auto waterfall level button is clicked, the following happens:
# [waterfall_levels.min] = [current_min_power_level] - [waterfall_auto_level_margin["min"]]
# [waterfall_levels.max] = [current_max_power_level] + [waterfall_auto_level_margin["max"]]
# [waterfall_levels.min] = [current_min_power_level] - [waterfall_auto_levels["min"]]
# [waterfall_levels.max] = [current_max_power_level] + [waterfall_auto_levels["max"]]
#
# ___|________________________________________|____________________________________|________________________________________|___> signal power
# \_waterfall_auto_level_margin["min"]_/ |__ current_min_power_level | \_waterfall_auto_level_margin["max"]_/
# current_max_power_level __|
# ___|__________________________________|____________________________________|__________________________________|___> signal power
# \_waterfall_auto_levels["min"]_/ |__ current_min_power_level | \_waterfall_auto_levels["max"]_/
# current_max_power_level __|
# This setting allows you to modify the precision of the frequency displays in OpenWebRX.
# Set this to exponent of 10 to select the most precise digit in Hz you'd like to see