Index: firmware/App/Tasks/TaskBG.h =================================================================== diff -u -rabb9687e52d9db5df1abe7626ba04a6d431ba823 -r0c085209bea23f66011059a7c19796c1e4b246fa --- firmware/App/Tasks/TaskBG.h (.../TaskBG.h) (revision abb9687e52d9db5df1abe7626ba04a6d431ba823) +++ firmware/App/Tasks/TaskBG.h (.../TaskBG.h) (revision 0c085209bea23f66011059a7c19796c1e4b246fa) @@ -1,13 +1,22 @@ -/* - * TaskBG.h - * - * Created on: Jul 31, 2024 - * Author: fw - */ #ifndef __TASKBG_H__ #define __TASKBG_H__ +/** + * @defgroup TaskBackground TaskBackground + * @brief The background task is an infinite loop running in the background + * called by main() after initialization. The background task executes + * functions that may take a long time to complete or are very low priority. + * This includes non-volatile memory operations and watchdog management. + * + * @addtogroup TaskBackground + * @{ + */ + +// Public function prototypes + void taskBackground( void ); +/**@}*/ + #endif