Index: firmware/App/Tasks/TaskGeneral.c =================================================================== diff -u -r9af6fc3e5afc442a877bd5e23ecfa6872a3ad5a4 -rc74c1d99a011dd0fb7f98f183faecda675221fce --- firmware/App/Tasks/TaskGeneral.c (.../TaskGeneral.c) (revision 9af6fc3e5afc442a877bd5e23ecfa6872a3ad5a4) +++ firmware/App/Tasks/TaskGeneral.c (.../TaskGeneral.c) (revision c74c1d99a011dd0fb7f98f183faecda675221fce) @@ -1,15 +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 ) { execOperationModes(); } + +/**@}*/