diff options
author | Maximilien Cuony <maximilien@theglu.org> | 2017-04-30 10:58:07 +0200 |
---|---|---|
committer | Maximilien Cuony <maximilien@theglu.org> | 2017-04-30 10:58:07 +0200 |
commit | fc64cb30100c4d19113795954f10b4678234506b (patch) | |
tree | d56c1ca3156261894c088f3c4cd0ce217db580a6 /src | |
parent | 963f2b7a9fb8dde817e45747c5237207bc330e9f (diff) | |
download | glutte-o-matic-fc64cb30100c4d19113795954f10b4678234506b.tar.gz glutte-o-matic-fc64cb30100c4d19113795954f10b4678234506b.tar.bz2 glutte-o-matic-fc64cb30100c4d19113795954f10b4678234506b.zip |
Increate delay after locator
Diffstat (limited to 'src')
-rw-r--r-- | src/common/src/Core/fsm.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/common/src/Core/fsm.c b/src/common/src/Core/fsm.c index 68da411..2d57444 100644 --- a/src/common/src/Core/fsm.c +++ b/src/common/src/Core/fsm.c @@ -444,7 +444,7 @@ void fsm_update() { if (temperature_valid()) { snprintf(cw_message_balise, CW_MESSAGE_BALISE_LEN-1, - CW_PREDELAY "HB9G JN36BK 1628M U %dV%01d %c T %d %s" CW_POSTDELAY, + CW_PREDELAY "HB9G JN36BK 1628M U %dV%01d %c T %d %s" CW_POSTDELAY, supply_decivolts / 10, supply_decivolts % 10, supply_trend, @@ -453,7 +453,7 @@ void fsm_update() { } else { snprintf(cw_message_balise, CW_MESSAGE_BALISE_LEN-1, - CW_PREDELAY "HB9G JN36BK 1628M U %dV%01d %c %s" CW_POSTDELAY, + CW_PREDELAY "HB9G JN36BK 1628M U %dV%01d %c %s" CW_POSTDELAY, supply_decivolts / 10, supply_decivolts % 10, supply_trend, @@ -524,7 +524,7 @@ void fsm_update() { fsm_out.msg = CW_PREDELAY "HB9G 1628M" CW_POSTDELAY; } else { - fsm_out.msg = CW_PREDELAY "HB9G JN36BK 1628M" CW_POSTDELAY; + fsm_out.msg = CW_PREDELAY "HB9G JN36BK 1628M" CW_POSTDELAY; } } fsm_out.cw_psk31_trigger = 1; |