Index: firmware/App/Tasks/TaskTimer.c =================================================================== diff -u -r9af6fc3e5afc442a877bd5e23ecfa6872a3ad5a4 -rc74c1d99a011dd0fb7f98f183faecda675221fce --- firmware/App/Tasks/TaskTimer.c (.../TaskTimer.c) (revision 9af6fc3e5afc442a877bd5e23ecfa6872a3ad5a4) +++ firmware/App/Tasks/TaskTimer.c (.../TaskTimer.c) (revision c74c1d99a011dd0fb7f98f183faecda675221fce) @@ -1,17 +1,29 @@ -/* - * TaskTimer.c - * - * Created on: Jul 31, 2024 - * Author: fw - */ #include "BLCommon.h" #include "TaskTimer.h" #include "Timers.h" +/** + * @addtogroup TaskTimer + * @{ + */ + +// ********** private data ********** + +/*********************************************************************//** + * @brief + * The taskTimer function handles the scheduled Timer Task interrupt. + * Calls the Timers executive to maintain a 1ms timer counter to + * support timer and timeout functions. + * @details \b Inputs: none + * @details \b Outputs: Executive function for Timers is called. + * @return none + *************************************************************************/ void taskTimer( void ) { incMSTimerCount(); + + // TODo add watchdog } - +/**@}*/