Index: Utilities.c =================================================================== diff -u -r502328647acae194f2b6348548b31b86357489a0 -re4cd77b41689d481b62354171272e108e09b88b8 --- Utilities.c (.../Utilities.c) (revision 502328647acae194f2b6348548b31b86357489a0) +++ Utilities.c (.../Utilities.c) (revision e4cd77b41689d481b62354171272e108e09b88b8) @@ -765,22 +765,5 @@ { return ( TRUE == sempahoreStatus[ s ].isSemaphoreTaken ? FALSE : TRUE ); } - -#ifndef _RELEASE_ -/*********************************************************************//** - * @brief - * The getHardwareConfigStatus function returns the status of the hardware - * configuration. - * @details Inputs: none - * @details Outputs: none - * @return status of the hardware configuration - *************************************************************************/ -HARDWARE_CONFIG_T getHardwareConfigStatus( void ) -{ - HARDWARE_CONFIG_T configValue = (HARDWARE_CONFIG_T)getFPGAHWConfiguration(); - - return configValue; -} -#endif /**@}*/ Index: Utilities.h =================================================================== diff -u -r9113cdc88dd46633aaac47652e93e12396c843bf -re4cd77b41689d481b62354171272e108e09b88b8 --- Utilities.h (.../Utilities.h) (revision 9113cdc88dd46633aaac47652e93e12396c843bf) +++ Utilities.h (.../Utilities.h) (revision e4cd77b41689d481b62354171272e108e09b88b8) @@ -123,10 +123,6 @@ BOOL getSemaphore( SEMAPHORE_T s ); void releaseSemaphore( SEMAPHORE_T s ); BOOL isSemaphoreReleased( SEMAPHORE_T s ); - -#ifndef _RELEASE_ -HARDWARE_CONFIG_T getHardwareConfigStatus( void ); -#endif /**@}*/