minor aprs format change

This commit is contained in:
Hansi, dl9rdz 2024-08-04 15:09:58 +00:00
parent 6816079f7f
commit 9b9980df05
2 changed files with 2 additions and 2 deletions

View File

@ -357,7 +357,7 @@ char *aprs_senddata(SondeInfo *si, const char *usercall, const char *objcall, co
sprintf(b+strlen(b), "%.3fMHz Type=%s ", si->freq, type /* sondeTypeStr[sonde.realType(si)] */ );
if( s->countKT != 0xffff && s->vframe - s->crefKT < 51 ) {
sprintf(b+strlen(b), "TxOff=%dh%dm ", s->countKT/3600, (s->countKT-s->countKT/3600*3600)/60);
sprintf(b+strlen(b), "TxOff=%dh%02dm ", s->countKT/3600, (s->countKT-s->countKT/3600*3600)/60);
}
if( TYPE_IS_DFM(si->type) || TYPE_IS_METEO(si->type) ) {
sprintf(b + strlen(b), "ser=%s ", s->ser);

View File

@ -1,4 +1,4 @@
const char *version_name = "rdzTTGOsonde";
const char *version_id = "devel20240521";
const char *version_id = "devel20240530";
const int SPIFFS_MAJOR=2;
const int SPIFFS_MINOR=17;