Index: firmware/App/Services/SystemComm.c =================================================================== diff -u -r8cf0fafa78ce14b5dbdf95510e957846660ac2b9 -raa99bf72495bf2cbbedec39214935d68e990eaed --- firmware/App/Services/SystemComm.c (.../SystemComm.c) (revision 8cf0fafa78ce14b5dbdf95510e957846660ac2b9) +++ firmware/App/Services/SystemComm.c (.../SystemComm.c) (revision aa99bf72495bf2cbbedec39214935d68e990eaed) @@ -7,8 +7,8 @@ * * @file SystemComm.c * -* @author (last) Dara Navaei -* @date (last) 10-May-2024 +* @author (last) Sean Nash +* @date (last) 01-Oct-2024 * * @author (original) Dara Navaei * @date (original) 05-Nov-2019 @@ -280,11 +280,13 @@ // Check ACK list for messages that need to be re-sent because they have not been ACK'd checkPendingACKList(); +#ifndef CARTRIDGE_TEST_BUILD if ( TRUE == hasDialinCheckInExpired() ) { // It has been a while since the user logged in but not activity has been received from Dialin so set the tester's status to log out setTesterStatusToLoggedOut(); - } + } +#endif } /*********************************************************************//** @@ -1844,6 +1846,18 @@ handleSetHDInstitutionalRecord( message ); break; + case MSG_ID_HD_BLOOD_LEAK_EMB_MODE_INFO_VALUES_OVERRIDE: + handleBloodLeakEmbModeInfoValuesOverride( message ); + break; + + case MSG_ID_HD_BLOOD_LEAK_INTENSITY_MVG_AVERAGE_OVERRIDE: + handleBloodLeakIntensityMovingAverageOverride( message ); + break; + + case MSG_ID_HD_BLOOD_LEAK_ZEROING_INTERVAL_IN_MINS_OVERRIDE: + handleBloodLeakZeroingIntervalInMinutesOverride( message ); + break; + // The default cannot be reached in VectorCAST since the cases are run in a for loop default: // Unrecognized message ID received - ignore