Index: firmware/App/Tasks/TaskBG.c =================================================================== diff -u -ra7bf3ca23ea37a61000379facae628a31b3ecc59 -r90334b92aa0ebe0c6795e649abf82ff808036004 --- firmware/App/Tasks/TaskBG.c (.../TaskBG.c) (revision a7bf3ca23ea37a61000379facae628a31b3ecc59) +++ firmware/App/Tasks/TaskBG.c (.../TaskBG.c) (revision 90334b92aa0ebe0c6795e649abf82ff808036004) @@ -17,16 +17,21 @@ #include "gio.h" -#include "WatchdogMgmt.h" #include "TaskTimer.h" +#include "WatchdogMgmt.h" + +/** + * @addtogroup TaskBG + * @{ + */ -/************************************************************************* - * @brief taskBackground - * The taskBackground function handles the idle Background Task loop. - * Calls the Watchdog Mgmt. and NonVolatile Data services. +/*********************************************************************//** + * @brief + * The taskBackground function handles the idle background task loop. * @details * Inputs : none - * Outputs : Executive for watchdog mgmt. and non-volatile data services called. + * Outputs : Executes the watchdog manangement service + * return none *************************************************************************/ void taskBackground( void ) { @@ -39,3 +44,4 @@ } } +/**@}*/