diff --git a/ui/status.c b/ui/status.c index c83f551..9287f8d 100644 --- a/ui/status.c +++ b/ui/status.c @@ -40,7 +40,8 @@ static void convertTime(uint8_t *line, uint8_t type) { char str[7]; if(type == 0) // Tx timer - t = ((gEeprom.TX_TIMEOUT_TIMER + 1) * 5) - (gTxTimerCountdown_500ms / 2); + t = (gTxTimerCountdown_500ms / 2); + //t = ((gEeprom.TX_TIMEOUT_TIMER + 1) * 5) - (gTxTimerCountdown_500ms / 2); else // Rx timer t = 3600 - (gRxTimerCountdown_500ms / 2);