BUG FIX: #6 serial communication error

This commit is contained in:
Krzysiek Egzmont
2023-10-03 20:06:20 +02:00
parent ec2d6e4a74
commit 6d0aea4587
3 changed files with 1 additions and 1 deletions

View File

@@ -1023,7 +1023,7 @@ void APP_Update(void)
}
#endif
if ((gCurrentFunction == FUNCTION_TRANSMIT && gTxTimeoutReached) || gSerialConfigCountDown_500ms > 0)
if (gCurrentFunction == FUNCTION_TRANSMIT && (gTxTimeoutReached || gSerialConfigCountDown_500ms > 0))
{ // transmitter timed out or must de-key
gTxTimeoutReached = false;

Binary file not shown.

Binary file not shown.