Index: firmware/App/Services/SystemCommDD.c =================================================================== diff -u -r830213bc6dcc1a684610caf78c79d55f2cb41e93 -r94691a0258fe496cfcdc4aaeaa2a5efba4a843ba --- firmware/App/Services/SystemCommDD.c (.../SystemCommDD.c) (revision 830213bc6dcc1a684610caf78c79d55f2cb41e93) +++ firmware/App/Services/SystemCommDD.c (.../SystemCommDD.c) (revision 94691a0258fe496cfcdc4aaeaa2a5efba4a843ba) @@ -91,8 +91,11 @@ // Initialize common system comm unit initSystemComm(); + //TODO: Restore this as this was system specific +#ifndef __BAD_MSG_CRC_ALARM_DISABLED__ // initialize bad message CRC time windowed count initTimeWindowedCount( TIME_WINDOWED_COUNT_BAD_MSG_CRC, MAX_COMM_CRC_FAILURES, MAX_COMM_CRC_FAILURE_WINDOW_MS ); +#endif // initialize FPGA clock speed error time windowed count initTimeWindowedCount( TIME_WINDOWED_COUNT_FPGA_CLOCK_SPEED_ERROR, MAX_FPGA_CLOCK_SPEED_ERRORS, MAX_FPGA_CLOCK_SPEED_ERROR_WINDOW_MS); @@ -268,10 +271,13 @@ *************************************************************************/ void checkTooManyBadMsgCRCs( void ) { + //TODO: Remove this as this was my current system specific. +#ifndef __BAD_MSG_CRC_ALARM_DISABLED__ if ( TRUE == incTimeWindowedCount( TIME_WINDOWED_COUNT_BAD_MSG_CRC ) ) { SET_ALARM_WITH_1_U32_DATA( ALARM_ID_DD_COMM_TOO_MANY_BAD_CRCS, 2 ); // 2 for DD } +#endif } /*********************************************************************//**