Index: TestSupport.c =================================================================== diff -u -rfa4ec44fcd8f3d3598485bdb9a94a08490f4ef6d -rd5a9cad98b597b902af6e7650708812a83a90b9f --- TestSupport.c (.../TestSupport.c) (revision fa4ec44fcd8f3d3598485bdb9a94a08490f4ef6d) +++ TestSupport.c (.../TestSupport.c) (revision d5a9cad98b597b902af6e7650708812a83a90b9f) @@ -532,7 +532,7 @@ testConfig[ config ] = TEST_CONFIG_ENABLE_KEY; status = TRUE; #ifdef _DD_ - if ( config == TEST_CONFIG_DD_FP_ENABLE_BETA_2_0_HW ) + if ( config == TEST_CONFIG_DD_FP_ENABLE_BETA_1_9_HW ) { if ( TRUE == getTestConfigStatus( TEST_CONFIG_DD_FP_ENABLE_BETA_1_0_HW ) ) { @@ -544,7 +544,7 @@ // Initialize the blood leak driver since the FPGA registers are changed initBloodLeak(); // initialize FPGA registers to Beta 2.0 - initFPGAPerHW( TRUE ); + initFPGAPerHW( FALSE ); } } #endif @@ -572,12 +572,12 @@ testConfig[ config ] = TEST_CONFIG_DISABLE_KEY; status = TRUE; #ifdef _DD_ - if ( config == TEST_CONFIG_DD_FP_ENABLE_BETA_2_0_HW ) + if ( config == TEST_CONFIG_DD_FP_ENABLE_BETA_1_9_HW ) { // Initialize the blood leak driver since the FPGA registers are changed initBloodLeak(); // initialize FPGA registers to Beta 1.9 or below - initFPGAPerHW( FALSE ); + initFPGAPerHW( TRUE ); } #endif }