Index: firmware/App/Services/SystemComm.c =================================================================== diff -u -r2b996e63fa5310e4d627bb473a208342d9b15930 -r28cd9da453de6282baea3113cf9f787810aae1e5 --- firmware/App/Services/SystemComm.c (.../SystemComm.c) (revision 2b996e63fa5310e4d627bb473a208342d9b15930) +++ firmware/App/Services/SystemComm.c (.../SystemComm.c) (revision 28cd9da453de6282baea3113cf9f787810aae1e5) @@ -7,8 +7,8 @@ * * @file SystemComm.c * -* @author (last) Darren Cox -* @date (last) 10-Mar-2022 +* @author (last) Dara Navaei +* @date (last) 26-May-2022 * * @author (original) Dara Navaei * @date (original) 05-Nov-2019 @@ -784,7 +784,7 @@ { if ( TRUE == incTimeWindowedCount( TIME_WINDOWED_COUNT_BAD_MSG_CRC ) ) { - SET_ALARM_WITH_1_U32_DATA( ALARM_ID_COMM_TOO_MANY_BAD_CRCS, (U32)ALARM_SOURCE_HD ); + SET_ALARM_WITH_1_U32_DATA( ALARM_ID_HD_COMM_TOO_MANY_BAD_CRCS, (U32)ALARM_SOURCE_HD ); } } @@ -1154,9 +1154,12 @@ handleTesterLogInRequest( message ); break; +#ifndef _VECTORCAST_ + // The default cannot be reached in VectorCAST since the cases are run in a for loop default: // Un-recognized or un-handled message ID received - ignore - break; + break; +#endif } // Handle any test messages if tester has logged in successfully @@ -1658,9 +1661,12 @@ handleSetBloodLeakEmbeddedModeCommand( message ); break; +#ifndef _VECTORCAST_ + // The default cannot be reached in VectorCAST since the cases are run in a for loop default: // Unrecognized message ID received - ignore - break; + break; +#endif } } }