Index: firmware/App/Services/SystemCommDD.c =================================================================== diff -u -r61ae50ebf0659ebf2deb9c68b2101d7d8d6a9688 -r2e95b9c3bf3cc4e02330bec5f0267a2bf264ce9b --- firmware/App/Services/SystemCommDD.c (.../SystemCommDD.c) (revision 61ae50ebf0659ebf2deb9c68b2101d7d8d6a9688) +++ firmware/App/Services/SystemCommDD.c (.../SystemCommDD.c) (revision 2e95b9c3bf3cc4e02330bec5f0267a2bf264ce9b) @@ -7,8 +7,8 @@ * * @file SystemCommDD.c * -* @author (last) Michael Garthwaite -* @date (last) 08-Sep-2025 +* @author (last) Jashwant Gantyada +* @date (last) 21-May-2026 * * @author (original) Vinayakam Mani * @date (original) 07-Aug-2024 @@ -93,8 +93,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); @@ -270,10 +273,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 } /*********************************************************************//**