mirror of
https://github.com/technix/ham_radio.git
synced 2024-11-27 09:23:50 +01:00
27 lines
627 B
Lua
27 lines
627 B
Lua
ham_radio.settings = {
|
|
-- color of RDS messages
|
|
rds_color = '#607d8b',
|
|
-- interval between RDS messages (seconds)
|
|
rds_interval = 10,
|
|
-- receiver hud position
|
|
hud_pos = { x = 0.5, y = 0.8 },
|
|
-- radio frequency range
|
|
frequency = {
|
|
min = 0,
|
|
max = 9999999
|
|
},
|
|
-- range where only one transmitter is permitted
|
|
locked_frequency = {
|
|
min = 100000,
|
|
max = 9999999
|
|
},
|
|
-- sub-range of locked frequency range
|
|
beacon_frequency = {
|
|
min = 1000000,
|
|
max = 9999999
|
|
},
|
|
-- digiline config
|
|
digiline_channel = "ham_radio",
|
|
digiline_rds_channel = "ham_radio_rds",
|
|
}
|