Skip to content

Commit

Permalink
Improve TX Timer
Browse files Browse the repository at this point in the history
  • Loading branch information
armel committed Apr 17, 2024
1 parent 1051bf0 commit 152b836
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion ui/status.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);

Expand Down

0 comments on commit 152b836

Please sign in to comment.