Index: firmware/App/Services/SystemComm.c =================================================================== diff -u -r75132889790857a9e5c330ee0495b9bd53b916fc -re053a8919a8b9d73ec52520e98a3d7a161107ead --- firmware/App/Services/SystemComm.c (.../SystemComm.c) (revision 75132889790857a9e5c330ee0495b9bd53b916fc) +++ firmware/App/Services/SystemComm.c (.../SystemComm.c) (revision e053a8919a8b9d73ec52520e98a3d7a161107ead) @@ -774,7 +774,7 @@ { for ( i = 0; i < PENDING_ACK_LIST_SIZE; i++ ) { // pending ACK expired? - if (( TRUE == pendingAckList[ i ].used ) && ( TRUE == didTimeout( pendingAckList[ i ].timeStamp, MSG_NOT_ACKED_TIMEOUT_MS ) )) + if ( ( TRUE == pendingAckList[ i ].used ) && ( TRUE == didTimeout( pendingAckList[ i ].timeStamp, MSG_NOT_ACKED_TIMEOUT_MS ) ) ) { // if retries left, reset and resend pending message. Do not retry when in POST since the UI might not still be responsive if ( pendingAckList[ i ].retries > 0 ) {