Index: TestSupport.c =================================================================== diff -u -rc3b42923ee1602261a31841233896b5be410c8be -rbb4952a602ec8ee91f2d04bd24e8270b7511dcaf --- TestSupport.c (.../TestSupport.c) (revision c3b42923ee1602261a31841233896b5be410c8be) +++ TestSupport.c (.../TestSupport.c) (revision bb4952a602ec8ee91f2d04bd24e8270b7511dcaf) @@ -8,7 +8,7 @@ * @file TestSupport.c * * @author (last) Dara Navaei -* @date (last) 08-May-2023 +* @date (last) 19-Oct-2023 * * @author (original) Sean Nash * @date (original) 10-Aug-2021 @@ -28,7 +28,7 @@ #define TEST_CONFIG_ENABLE_KEY 0xDABA36B2 ///< Release software configuration enable key. #define TEST_CONFIG_DISABLE_KEY 0x00000000 ///< Release software configuration disable key. -#define DIALIN_CHECK_IN_TIMEOUT_MS ( 5 * SEC_PER_MIN * MS_PER_SECOND ) ///< Dialin check in timeout in milliseconds. +#define DIALIN_CHECK_IN_TIMEOUT_MS ( 8 * MIN_PER_HOUR * SEC_PER_MIN * MS_PER_SECOND ) ///< Dialin check in timeout in milliseconds. // ********** private data ********** @@ -340,14 +340,10 @@ if ( ( TRUE == didTimeout( dialinCheckInTimeStamp, DIALIN_CHECK_IN_TIMEOUT_MS ) ) && ( TRUE == isTestingActivated() ) ) { - // If the user has logged in and the check in from dialin has expired, set the status to true + // If the dialin check in has timed out and tester has logged in check for the expiration value status = TRUE; } - // TODO remove when the dialin portion has been implemented - status = FALSE; - // TODo remove when the dialin portion has been implemented - return status; }