Index: TestSupport.h =================================================================== diff -u -r36f96b1e7a43e0947ff10e3c6947d80e37152d9c -r09be04ff95d11dacfaeb60071fdf30e48b45dd17 --- TestSupport.h (.../TestSupport.h) (revision 36f96b1e7a43e0947ff10e3c6947d80e37152d9c) +++ TestSupport.h (.../TestSupport.h) (revision 09be04ff95d11dacfaeb60071fdf30e48b45dd17) @@ -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 @@ -50,8 +50,12 @@ /// DD test software configurations typedef enum test_Config_enums { - 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_DD_FP_ENABLE_BETA_1_0_HW = 0, ///< Test configuration DD & FP enable Beta 1.0 hardware + TEST_CONFIG_FIRST = TEST_CONFIG_DD_FP_ENABLE_BETA_1_0_HW, ///< Test configuration first configuration. + TEST_CONFIG_DD_DISABLE_BC_PRESSURE_ALARMS, ///< Test configuration DD disabling BC pressure alarms + TEST_CONFIG_DD_ENABLE_DRY_BICART_FILL, ///< Test configuration DD enable dry bicart fill + TEST_CONFIG_DD_ENABLE_4WIRE_RINSE_PUMP, ///< Test configuration DD enable 4-wire rinse pump. + TEST_CONFIG_FP_SKIP_PRE_GEN_FLUSH, ///< Test configuration FP skip pre-gen flush NUM_OF_TEST_CONFIGS ///< Number of test configuration. } TEST_CONFIG_T; #endif @@ -60,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