fix minor bug that prevents most revent devel versions from communicating with app

This commit is contained in:
Hansi, dl9rdz 2021-03-16 09:39:54 +01:00
parent 67b11b2a65
commit 4da22ab2ec
2 changed files with 2 additions and 2 deletions

View File

@ -2120,7 +2120,7 @@ void loopDecoder() {
if (*typestr == 0) typestr = sondeTypeStr[s->type]; if (*typestr == 0) typestr = sondeTypeStr[s->type];
// TODO: only if GPS is valid... // TODO: only if GPS is valid...
if (gpsPos.valid) { if (gpsPos.valid) {
snprintf(gps, 128, ", \"gpslat\": %f" snprintf(gps, 128, ", \"gpslat\": %f,"
"\"gpslon\": %f," "\"gpslon\": %f,"
"\"gpsalt\": %d," "\"gpsalt\": %d,"
"\"gpsacc\": %d," "\"gpsacc\": %d,"

View File

@ -1,4 +1,4 @@
const char *version_name = "rdzTTGOsonde"; const char *version_name = "rdzTTGOsonde";
const char *version_id = "devel20210315"; const char *version_id = "devel20210316";
const int SPIFFS_MAJOR=2; const int SPIFFS_MAJOR=2;
const int SPIFFS_MINOR=10; const int SPIFFS_MINOR=10;