Index: firmware/App/Tasks/TaskTimer.c =================================================================== diff -u -rd4481dd44bcc98172e785f812aa0c543c5385252 -r7d4711edd7b40cd3e29f43e766f79a8a09586fe9 --- firmware/App/Tasks/TaskTimer.c (.../TaskTimer.c) (revision d4481dd44bcc98172e785f812aa0c543c5385252) +++ firmware/App/Tasks/TaskTimer.c (.../TaskTimer.c) (revision 7d4711edd7b40cd3e29f43e766f79a8a09586fe9) @@ -1,34 +1,38 @@ /************************************************************************** * -* Copyright (c) 2019-2020 Diality Inc. - All Rights Reserved. +* Copyright (c) 2019-2024 Diality Inc. - All Rights Reserved. * * THIS CODE MAY NOT BE COPIED OR REPRODUCED IN ANY FORM, IN PART OR IN * WHOLE, WITHOUT THE EXPLICIT PERMISSION OF THE COPYRIGHT OWNER. * -* @file TaskTimer.c +* @file TaskTimer.c * -* @author (last) Dara Navaei -* @date (last) 05-Nov-2019 +* @author (last) Quang Nguyen +* @date (last) 24-Sep-2020 * -* @author (original) Dara Navaei -* @date (original) 05-Nov-2019 +* @author (original) Dara Navaei +* @date (original) 05-Nov-2019 * ***************************************************************************/ #include "gio.h" -#include "WatchdogMgmt.h" -#include "Timers.h" #include "TaskTimer.h" +#include "Timers.h" +#include "WatchdogMgmt.h" + +/** + * @addtogroup TaskPriority + * @{ + */ -/************************************************************************* - * @brief taskTimer +/*********************************************************************//** + * @brief * The taskTimer function handles the scheduled Timer Task interrupt. - * Calls the Timers executive to maintain a 1ms timer counter to + * Calls the Timers executive to maintain a 1 ms timer counter to * support timer and timeout functions. - * @details - * Inputs : none - * Outputs : Executive for Timers called. + * @details Inputs: none + * @details Outputs: Executive for Timers called. *************************************************************************/ void taskTimer( void ) { @@ -46,3 +50,5 @@ // SET_TASK_OFF(); // TODO - uncomment and define TASK_TIMING_OUTPUT_ENABLED to monitor this tasks timing #endif } + +/**@}*/