Index: firmware/App/Tasks/TaskGeneral.c =================================================================== diff -u -r850f8042a02fd17ee53b8db24bc2e3d17bbb9c7f -rc74c1d99a011dd0fb7f98f183faecda675221fce --- firmware/App/Tasks/TaskGeneral.c (.../TaskGeneral.c) (revision 850f8042a02fd17ee53b8db24bc2e3d17bbb9c7f) +++ firmware/App/Tasks/TaskGeneral.c (.../TaskGeneral.c) (revision c74c1d99a011dd0fb7f98f183faecda675221fce) @@ -1,14 +1,27 @@ -/* - * TaskGeneral.c - * - * Created on: Jul 31, 2024 - * Author: fw - */ #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 ) { - BOOL test; + execOperationModes(); } + +/**@}*/