Improve TX Timer

This commit is contained in:
Armel FAUVEAU
2024-04-17 16:32:10 +02:00
parent 1051bf0e68
commit 152b8363e5

View File

@@ -40,7 +40,8 @@ static void convertTime(uint8_t *line, uint8_t type) {
char str[7]; char str[7];
if(type == 0) // Tx timer 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 else // Rx timer
t = 3600 - (gRxTimerCountdown_500ms / 2); t = 3600 - (gRxTimerCountdown_500ms / 2);