#include "BLCommon.h" #include "CommBuffers.h" #include "FPGA.h" #include "TaskPriority.h" /** * @addtogroup TaskPriority * @{ */ // ********** private data ********** /*********************************************************************//** * @brief * The taskPriority function handles the scheduled Priority Task interrupt. * Calls the executive functions for FPGA. * @details \b Inputs: none * @details \b Outputs: Executive functions running in priority task are called. * @return none *************************************************************************/ void taskPriority( void ) { execFPGA(); } /**@}*/