Index: TestSupport.c =================================================================== diff -u -rb6e65e641d011321fab6c93819720af597b48f9c -r1d13178cec7ef648ff27f8917c2eb80aac0823df --- TestSupport.c (.../TestSupport.c) (revision b6e65e641d011321fab6c93819720af597b48f9c) +++ TestSupport.c (.../TestSupport.c) (revision 1d13178cec7ef648ff27f8917c2eb80aac0823df) @@ -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( FALSE ); + initFPGAPerHW( TRUE ); } } #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( TRUE ); + initFPGAPerHW( FALSE ); } #endif }