Index: TestSupport.h =================================================================== diff -u -r1c37ee458799a0a0b7e0fddf55b73db0a8c44143 -r14ff421fac3c858496174a982c858ae3f58620b0 --- TestSupport.h (.../TestSupport.h) (revision 1c37ee458799a0a0b7e0fddf55b73db0a8c44143) +++ TestSupport.h (.../TestSupport.h) (revision 14ff421fac3c858496174a982c858ae3f58620b0) @@ -1,14 +1,14 @@ /************************************************************************** * -* Copyright (c) 2024-2025 Diality Inc. - All Rights Reserved. +* Copyright (c) 2024-2026 Diality Inc. - All Rights Reserved. * * THIS CODE MAY NOT BE COPIED OR REPRODUCED IN ANY FORM, IN PART OR IN * WHOLE, WITHOUT THE EXPLICIT PERMISSION OF THE COPYRIGHT OWNER. * * @file TestSupport.h * -* @author (last) Vinayakam Mani -* @date (last) 16-Sep-2025 +* @author (last) “rkallala” +* @date (last) 20-Jan-2026 * * @author (original) Sean Nash * @date (original) 01-Aug-2024 @@ -52,7 +52,9 @@ { TEST_CONFIG_DISABLE_BC_PRESSURE_ALARMS = 0, ///< Test configuration disabling BC pressure alarms TEST_CONFIG_FIRST = TEST_CONFIG_DISABLE_BC_PRESSURE_ALARMS, ///< Test configuration first configuration. - TEST_CONFIG_ENABLE_BC_FILL, ///< Place holder for bicart fill test config + TEST_CONFIG_ENABLE_DRY_BICART_FILL, ///< Test configuration disabling Dry Bicart fill check + TEST_CONFIG_ENABLE_4WIRE_RINSE_PUMP, ///< Test configuration enable 4-wire rinse pump. + TEST_CONFIG_SKIP_PRE_GEN_FLUSH, ///< Test configuration to skip pre-gen flush TEST_CONFIG_ENABLE_UF_TEMP_COMPENSATION, ///< Test Configuration for enabling ultrafiltration temperature compensation NUM_OF_TEST_CONFIGS ///< Number of test configuration. } TEST_CONFIG_T; @@ -62,8 +64,9 @@ /// TD test software configurations typedef enum test_Config { - TEST_CONFIG_FIRST = 0, ///< Test configuration first configuration. - NUM_OF_TEST_CONFIGS ///< Number of test configuration. + TEST_CONFIG_SKIP_BLOOD_PRIME = 0, ///< Test configuration skip blood prime. + TEST_CONFIG_FIRST = TEST_CONFIG_SKIP_BLOOD_PRIME, ///< Test configuration first configuration. + NUM_OF_TEST_CONFIGS ///< Number of test configuration. } TEST_CONFIG_T; #endif