Index: firmware/App/Tasks/TaskBG.c =================================================================== diff -u -r893caf9f58a08a2bd31068806e09603041d64add -rc74c1d99a011dd0fb7f98f183faecda675221fce --- firmware/App/Tasks/TaskBG.c (.../TaskBG.c) (revision 893caf9f58a08a2bd31068806e09603041d64add) +++ firmware/App/Tasks/TaskBG.c (.../TaskBG.c) (revision c74c1d99a011dd0fb7f98f183faecda675221fce) @@ -1,13 +1,23 @@ -/* - * TaskBG.c - * - * Created on: Jul 31, 2024 - * Author: fw - */ #include "Download.h" #include "TaskBG.h" +/** + * @addtogroup TaskBackground + * @{ + */ + +// ********** private definitions ********** + +// ********** private data ********** + +/*********************************************************************//** + * @brief + * The taskBackground function handles the idle Background Task loop. + * @details \b Inputs: none + * @details \b Outputs: Background task functions are called. + * @return none + *************************************************************************/ void taskBackground( void ) { #ifndef _VECTORCAST_ // Cannot have infinite loop in unit test tool @@ -18,3 +28,4 @@ } } +/**@}*/