Index: firmware/App/Services/SystemComm.c =================================================================== diff -u -rf487bb5f87d2e09a94f0a609552f1c93d1efb684 -raa99bf72495bf2cbbedec39214935d68e990eaed --- firmware/App/Services/SystemComm.c (.../SystemComm.c) (revision f487bb5f87d2e09a94f0a609552f1c93d1efb684) +++ 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 } /*********************************************************************//** Index: firmware/App/Services/SystemCommMessages.c =================================================================== diff -u -rc27b1788cee92bcb143d6c4f09d4b278ddded36f -raa99bf72495bf2cbbedec39214935d68e990eaed --- firmware/App/Services/SystemCommMessages.c (.../SystemCommMessages.c) (revision c27b1788cee92bcb143d6c4f09d4b278ddded36f) +++ firmware/App/Services/SystemCommMessages.c (.../SystemCommMessages.c) (revision aa99bf72495bf2cbbedec39214935d68e990eaed) @@ -7,8 +7,8 @@ * * @file SystemCommMessages.c * -* @author (last) Dara Navaei -* @date (last) 19-Sep-2024 +* @author (last) Sean Nash +* @date (last) 30-Sep-2024 * * @author (original) Dara Navaei * @date (original) 05-Nov-2019 @@ -96,7 +96,11 @@ // ********** private data ********** +#ifndef CARTRIDGE_TEST_BUILD static BOOL testerLoggedIn = FALSE; ///< Flag indicates whether an external tester (connected PC) has sent a valid login message. +#else +static BOOL testerLoggedIn = TRUE; ///< Flag indicates whether an external tester (connected PC) has sent a valid login message. +#endif static volatile U16 nextSeqNo = 1; ///< Value of sequence number to use for next transmitted message. /// List of message IDs that are requested not to be transmitted.