avoid using tuples, they don't work in json (future config system)

This commit is contained in:
Jakob Ketterl
2021-02-08 15:34:55 +01:00
parent a083042002
commit 3a1e5ee73c
2 changed files with 16 additions and 5 deletions

View File

@ -318,8 +318,8 @@ fst4_enabled_intervals = [15, 30]
fst4w_enabled_intervals = [120, 300]
# Q65 allows many combinations of intervals and submodes. This setting determines which combinations will be decoded.
# Please use python tuples of (interval: int, mode: str) to specify the combinations. For example:
q65_enabled_combinations = [(30, "A"), (120, "E"), (60, "C")]
# Please use the mode letter followed by the decode interval in seconds to specify the combinations. For example:
q65_enabled_combinations = ["A30", "E120", "C60"]
# JS8 comes in different speeds: normal, slow, fast, turbo. This setting controls which ones are enabled.
js8_enabled_profiles = ["normal", "slow"]