From 775b7ff3e058cfdd81d64e55b5c1102fc28d43e5 Mon Sep 17 00:00:00 2001 From: Luke Prior <22492406+LukePrior@users.noreply.github.com> Date: Mon, 20 Sep 2021 17:27:11 +1000 Subject: [PATCH] Update RX_FSK.ino --- RX_FSK/RX_FSK.ino | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/RX_FSK/RX_FSK.ino b/RX_FSK/RX_FSK.ino index 5c941b3..7e9164b 100644 --- a/RX_FSK/RX_FSK.ino +++ b/RX_FSK/RX_FSK.ino @@ -3714,8 +3714,8 @@ void sondehub_send_data(WiFiClient * client, SondeInfo * s, struct st_sondehub * } // 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); + if ((realtype == STYPE_RS41) && ((int)s->countKT != 0)) { + sprintf(w, "\"burst_timer\": %d,", (int)s->countKT); w += strlen(w); }