changed default value for timing.play.wait to 1 sec

pull/5/head
Tom Early 7 years ago
parent 709cde72d1
commit 28c29673e3

@ -402,7 +402,7 @@ bool CQnetGateway::read_config(char *cfgFile)
// timing // timing
path = "timing.play."; path = "timing.play.";
get_value(cfg, path+"wait", play_wait, 1, 10, 2); get_value(cfg, path+"wait", play_wait, 1, 10, 1);
get_value(cfg, path+"delay", play_delay, 9, 25, 19); get_value(cfg, path+"delay", play_delay, 9, 25, 19);

@ -695,7 +695,7 @@ bool CQnetLink::read_config(const char *cfgFile)
if (! get_value(cfg, "file.announce_dir", announce_dir, 2, FILENAME_MAX, "/usr/local/etc")) if (! get_value(cfg, "file.announce_dir", announce_dir, 2, FILENAME_MAX, "/usr/local/etc"))
return true; return true;
get_value(cfg, "timing.play.wait", delay_before, 1, 10, 2); get_value(cfg, "timing.play.wait", delay_before, 1, 10, 1);
memset(link_at_startup, 0, CALL_SIZE+1); memset(link_at_startup, 0, CALL_SIZE+1);
if (get_value(cfg, "link.link_at_start", value, 5, CALL_SIZE, "NONE")) { if (get_value(cfg, "link.link_at_start", value, 5, CALL_SIZE, "NONE")) {

@ -216,7 +216,7 @@ bool read_config(const char *cfgFile)
get_value(cfg, "gateway.internal.port", PORT, 16000, 65535, is_icom ? 20000 : 19000); get_value(cfg, "gateway.internal.port", PORT, 16000, 65535, is_icom ? 20000 : 19000);
get_value(cfg, "timing.play.wait", PLAY_WAIT, 1, 10, 2); get_value(cfg, "timing.play.wait", PLAY_WAIT, 1, 10, 1);
get_value(cfg, "timing.play.delay", PLAY_DELAY, 9, 25, 19); get_value(cfg, "timing.play.delay", PLAY_DELAY, 9, 25, 19);

@ -299,7 +299,7 @@ timing = {
} }
play = { play = {
# wait = 2 # seconds before playback occurs, between 1 and 10 # wait = 1 # seconds before playback occurs, between 1 and 10
# delay = 19 # microseconds between frames playback, if echo sounds bad, adjust this up or down 1,2 microseconds # delay = 19 # microseconds between frames playback, if echo sounds bad, adjust this up or down 1,2 microseconds
} }

@ -128,7 +128,7 @@ timing = {
} }
play = { play = {
# wait = 2 # seconds before playback occurs, between 1 and 10 # wait = 1 # seconds before playback occurs, between 1 and 10
# delay = 19 # microseconds between frames playback, if echo sounds bad, adjust this up or down 1,2 microseconds # delay = 19 # microseconds between frames playback, if echo sounds bad, adjust this up or down 1,2 microseconds
} }

Loading…
Cancel
Save

Powered by TurnKey Linux.