Update RX_FSK.ino

This commit is contained in:
Luke Prior 2021-06-27 22:21:54 +10:00 committed by GitHub
parent 6485be7cb2
commit 6e9e5b8a79
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -3146,7 +3146,7 @@ void sondehub_send_data(WiFiClient *client, SondeInfo *s, struct st_sondehub *co
// DFM uses UTC. Most of the other radiosondes use GPS time // DFM uses UTC. Most of the other radiosondes use GPS time
// SondeHub expect datetime to be the same time sytem as the sonde transmits as time stamp // SondeHub expect datetime to be the same time sytem as the sonde transmits as time stamp
if ( s->type == STYPE_RS41 || s->type == STYPE_RS92 ) { if ( s->type == STYPE_RS41 || s->type == STYPE_RS92 || s->type == STYPE_M20 ) {
t += 18; // convert back to GPS time from UTC time +18s t += 18; // convert back to GPS time from UTC time +18s
} }