Index: App/Tasks/TaskPriority.c =================================================================== diff -u -r765d2c35118e202444e737c66c77faf9678cc87e -r894b734327eb6e7cfa6bf651623576bc10214195 --- App/Tasks/TaskPriority.c (.../TaskPriority.c) (revision 765d2c35118e202444e737c66c77faf9678cc87e) +++ App/Tasks/TaskPriority.c (.../TaskPriority.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 TaskPriority.c -* -* @brief Priority task handler. -* -* @date 19-Sep-2019 -* -*************************************************************************/ + * + * Copyright Diality, Inc. 2019-2020. All Rights Reserved. + * 181 Technology, Ste. 150 + * Irvine, CA 92618 + * + * Project Denali + * + * @file TaskPriority.c + * + * @brief Priority task handler. + * + * @date 19-Sep-2019 + * + *************************************************************************/ #include "gio.h" @@ -27,16 +27,16 @@ * @details * Inputs : none * Outputs : Executive for the FPGA, pumps, valves, and buttons called. -*************************************************************************/ + *************************************************************************/ void taskPriority( void ) { - // monitor and process buttons - execButtons(); + // monitor and process buttons + execButtons(); - // check in with watchdog manager - checkInWithWatchdogMgmt( TASK_PRIORITY ); + // check in with watchdog manager + checkInWithWatchdogMgmt( TASK_PRIORITY ); - // toggle GPIO to indicate priority task has executed - gioToggleBit( gioPORTA, 1 ); + // toggle GPIO to indicate priority task has executed + gioToggleBit( gioPORTA, 1 ); }