Index: TestSupport.c =================================================================== diff -u -rca1d590217b1bfd14f0e0682f88e04de076ff199 -r73ba2fe4563a96335d1e5c5528a70029a60fa815 --- TestSupport.c (.../TestSupport.c) (revision ca1d590217b1bfd14f0e0682f88e04de076ff199) +++ TestSupport.c (.../TestSupport.c) (revision 73ba2fe4563a96335d1e5c5528a70029a60fa815) @@ -16,6 +16,7 @@ ***************************************************************************/ #include "Common.h" +#include "FpgaDD.h" #include "Messaging.h" #include "Timers.h" @@ -527,6 +528,10 @@ { testConfig[ config ] = TEST_CONFIG_ENABLE_KEY; status = TRUE; + if ( config == TEST_CONFIG_DD_FP_ENABLE_BETA_2_0_HW ) + { + initFPGAPerHW( TRUE ); + } } return status; @@ -550,6 +555,10 @@ { testConfig[ config ] = TEST_CONFIG_DISABLE_KEY; status = TRUE; + if ( config == TEST_CONFIG_DD_FP_ENABLE_BETA_2_0_HW ) + { + initFPGAPerHW( FALSE ); + } } return status;