Index: firmware/App/Services/SystemComm.c =================================================================== diff -u -r8791132fbfcb8fa25fb11a9ab15d695686aaef75 -rbb0566d9d186ea1379fbba7233c6b7ebf95bc50c --- firmware/App/Services/SystemComm.c (.../SystemComm.c) (revision 8791132fbfcb8fa25fb11a9ab15d695686aaef75) +++ firmware/App/Services/SystemComm.c (.../SystemComm.c) (revision bb0566d9d186ea1379fbba7233c6b7ebf95bc50c) @@ -8,7 +8,7 @@ * @file SystemComm.c * * @author (last) Dara Navaei -* @date (last) 11-Nov-2022 +* @date (last) 14-Dec-2022 * * @author (original) Dara Navaei * @date (original) 05-Nov-2019 @@ -900,7 +900,7 @@ U16 msgID; memcpy( &msgID, (U08*)&pendingAckList[ i ].msg[ sizeof( U08 ) + sizeof( U16) ], sizeof( U16 ) ); - SET_ALARM_WITH_1_U32_DATA( ALARM_ID_CAN_MESSAGE_NOT_ACKED, (U32)msgID ); + SET_ALARM_WITH_1_U32_DATA( ALARM_ID_HD_CAN_MESSAGE_NOT_ACKED, (U32)msgID ); pendingAckList[ i ].used = FALSE; // Take pending message off of list } } @@ -1163,6 +1163,10 @@ handleUIConfirmationResponse( message ); break; + case MSG_ID_HD_SET_SERVICE_TIME: + handleSetHDServiceTime( message ); + break; + // NOTE: this always must be the last case case MSG_ID_TESTER_LOGIN_REQUEST: handleTesterLogInRequest( message ); @@ -1688,6 +1692,10 @@ handleTestDialOutSetPWM( message ); break; + case MSG_ID_HD_NV_RECORD_CRC_OVERRIDE: + handleTestHDNVRecordCRCOverride( message ); + break; + case MSG_ID_HD_AIR_PUMP_PUBLISH_INTERVAL_OVERRIDE: handleAirPumpIntervalOverrideRequest( message ); break;