Index: firmware/App/Services/SystemComm.c =================================================================== diff -u -rb13018664f3d4fe4786a0c4200304f84a6e742ca -rca8a4a4cf6d2c59d9296c3abdf314765550a2624 --- firmware/App/Services/SystemComm.c (.../SystemComm.c) (revision b13018664f3d4fe4786a0c4200304f84a6e742ca) +++ firmware/App/Services/SystemComm.c (.../SystemComm.c) (revision ca8a4a4cf6d2c59d9296c3abdf314765550a2624) @@ -7,8 +7,8 @@ * * @file SystemComm.c * -* @author (last) Vinayakam Mani -* @date (last) 02-May-2024 +* @author (last) Dara Navaei +* @date (last) 02-Nov-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