Skip to content

Commit

Permalink
BUG FIX: #6 serial communication error
Browse files Browse the repository at this point in the history
  • Loading branch information
egzumer committed Oct 3, 2023
1 parent ec2d6e4 commit 6d0aea4
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/app.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down
Binary file removed firmware.bin
Binary file not shown.
Binary file removed firmware.packed.bin
Binary file not shown.

0 comments on commit 6d0aea4

Please sign in to comment.