Index: firmware/App/Tasks/TaskGeneral.h =================================================================== diff -u -rabb9687e52d9db5df1abe7626ba04a6d431ba823 -r0c085209bea23f66011059a7c19796c1e4b246fa --- firmware/App/Tasks/TaskGeneral.h (.../TaskGeneral.h) (revision abb9687e52d9db5df1abe7626ba04a6d431ba823) +++ firmware/App/Tasks/TaskGeneral.h (.../TaskGeneral.h) (revision 0c085209bea23f66011059a7c19796c1e4b246fa) @@ -1,16 +1,22 @@ -/* - * TaskGeneral.h - * - * Created on: Jul 31, 2024 - * Author: fw - */ #ifndef __TASKGENERAL_H__ #define __TASKGENERAL_H__ -#define TASK_GENERAL_INTERVAL 50 +/** + * @defgroup TaskGeneral TaskGeneral + * @brief The general task is called by RTI interrupt every 50 ms and performs + * the bulk of sensor, actuator, mode, alarm, and communication operations. + * + * @addtogroup TaskGeneral + * @{ + */ +// Public definitions + +// Public function prototypes + void taskGeneral( void ); +/**@}*/ #endif