#include "BLCommon.h" #include "OperationModes.h" #include "TaskGeneral.h" /** * @addtogroup TaskGeneral * @{ */ // ********** private data ********** /*********************************************************************//** * @brief * The taskGeneral function handles the scheduled General Task interrupt. * Calls the executive functions for most monitors and controllers, the * operation modes. * @details \b Inputs: none * @details \b Outputs: Executive functions running in general task are called. * @return none *************************************************************************/ void taskGeneral( void ) { execOperationModes(); } /**@}*/