Index: App/Tasks/TaskTimer.c =================================================================== diff -u -r765d2c35118e202444e737c66c77faf9678cc87e -r894b734327eb6e7cfa6bf651623576bc10214195 --- App/Tasks/TaskTimer.c (.../TaskTimer.c) (revision 765d2c35118e202444e737c66c77faf9678cc87e) +++ App/Tasks/TaskTimer.c (.../TaskTimer.c) (revision 894b734327eb6e7cfa6bf651623576bc10214195) @@ -1,18 +1,18 @@ /************************************************************************* -* -* Copyright Diality, Inc. 2019-2020. All Rights Reserved. -* 181 Technology, Ste. 150 -* Irvine, CA 92618 -* -* Project Denali -* -* @file TaskTimer.c -* -* @brief Timer task handler. -* -* @date 19-Sep-2019 -* -*************************************************************************/ + * + * Copyright Diality, Inc. 2019-2020. All Rights Reserved. + * 181 Technology, Ste. 150 + * Irvine, CA 92618 + * + * Project Denali + * + * @file TaskTimer.c + * + * @brief Timer task handler. + * + * @date 19-Sep-2019 + * + *************************************************************************/ #include "gio.h" @@ -27,13 +27,13 @@ * @details * Inputs : none * Outputs : Executive for Timers called. -*************************************************************************/ + *************************************************************************/ void taskTimer( void ) { - // check in with watchdog manager - checkInWithWatchdogMgmt( TASK_TIMER ); + // check in with watchdog manager + checkInWithWatchdogMgmt( TASK_TIMER ); - // toggle GPIO to indicate timer task has executed - gioToggleBit( gioPORTA, 2 ); + // toggle GPIO to indicate timer task has executed + gioToggleBit( gioPORTA, 2 ); }