remove TX TIMESYNC event display

This commit is contained in:
Verkehrsrot 2019-08-29 10:15:11 +02:00
parent 258e830470
commit c97140d822

View File

@ -305,13 +305,7 @@ void onEvent(ev_t ev) {
case EV_TXSTART: case EV_TXSTART:
if (!(LMIC.opmode & OP_JOINING)) { if (!(LMIC.opmode & OP_JOINING)) {
#if (TIME_SYNC_LORASERVER) strcpy_P(buff, PSTR("TX START"));
// if last packet sent was a timesync request, store TX time
if (LMIC.pendTxPort == TIMEPORT)
strcpy_P(buff, PSTR("TX TIMESYNC"));
else
#endif
strcpy_P(buff, PSTR("TX START"));
} }
break; break;