diff --git a/RX_FSK/RX_FSK.ino b/RX_FSK/RX_FSK.ino index d3a05c0..4db06e4 100644 --- a/RX_FSK/RX_FSK.ino +++ b/RX_FSK/RX_FSK.ino @@ -3699,8 +3699,8 @@ void sondehub_send_data(WiFiClient * client, SondeInfo * s, struct st_sondehub * w += strlen(w); } - // Only send burst timer if RS41 - if (realtype == STYPE_RS41) { + // Only send burst timer if RS41 and not 0 + if ((realtype == STYPE_RS41) && ((int)s->burstKT != 0)) { sprintf(w, "\"burst_timer\": %d,", (int)s->burstKT); w += strlen(w); }