Index: SystemComm.c =================================================================== diff -u -rf4b440f1a4e29598b7726826d87a8cfb7885e214 -r6520e649188757399c2dfd58a30af80d96256295 --- SystemComm.c (.../SystemComm.c) (revision f4b440f1a4e29598b7726826d87a8cfb7885e214) +++ SystemComm.c (.../SystemComm.c) (revision 6520e649188757399c2dfd58a30af80d96256295) @@ -94,8 +94,6 @@ static void consumeBufferPaddingBeforeSync( COMM_BUFFER_T buffer ); static void processReceivedMessages( void ); -static void checkTooManyBadMsgCRCs( void ); - static BOOL matchACKtoPendingACKList( S16 seqNo ); static void checkPendingACKList( void ); @@ -599,23 +597,6 @@ /*********************************************************************//** * @brief - * The checkTooManyBadMsgCRCs function checks for too many bad message CRCs - * within a set period of time. Assumed function is being called when a new - * bad CRC is detected so a new bad CRC will be added to the list. - * @details Inputs: badCRCTimeStamps[], badCRCListIdx, badCRCListCount - * @details Outputs: possibly a "too many bad CRCs" alarm - * @return none - *************************************************************************/ -static void checkTooManyBadMsgCRCs( void ) -{ - if ( TRUE == incTimeWindowedCount( TIME_WINDOWED_COUNT_BAD_MSG_CRC ) ) - { - SET_ALARM_WITH_1_U32_DATA( ALARM_ID_TD_COMM_TOO_MANY_BAD_CRCS, (U32)ALARM_SOURCE_HD ); - } -} - -/*********************************************************************//** - * @brief * The addMsgToPendingACKList function adds a given message to the pending * ACK list. Messages in this list will require receipt of an ACK message * for this particular message within a limited time.