Update RX_FSK.ino

This commit is contained in:
Luke Prior 2021-09-20 17:27:11 +10:00 committed by GitHub
parent 359188436c
commit 775b7ff3e0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -3714,8 +3714,8 @@ void sondehub_send_data(WiFiClient * client, SondeInfo * s, struct st_sondehub *
} }
// Only send burst timer if RS41 and not 0 // Only send burst timer if RS41 and not 0
if ((realtype == STYPE_RS41) && ((int)s->burstKT != 0)) { if ((realtype == STYPE_RS41) && ((int)s->countKT != 0)) {
sprintf(w, "\"burst_timer\": %d,", (int)s->burstKT); sprintf(w, "\"burst_timer\": %d,", (int)s->countKT);
w += strlen(w); w += strlen(w);
} }