From 152b8363e5017ce70483d733e1a5523612a74b15 Mon Sep 17 00:00:00 2001 From: Armel FAUVEAU Date: Wed, 17 Apr 2024 16:32:10 +0200 Subject: [PATCH] Improve TX Timer --- ui/status.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ui/status.c b/ui/status.c index c83f5515d..9287f8d8e 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);