/************************************************************************* * * 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 20-Sep-2019 * *************************************************************************/ #include "gio.h" #include "WatchdogMgmt.h" #include "TaskTimer.h" /************************************************************************* * @brief taskBackground * The taskBackground function handles the idle Background Task loop. * Calls the Watchdog Mgmt. and NonVolatile Data services. * @details * Inputs : none * Outputs : Executive for watchdog mgmt. and non-volatile data services called. *************************************************************************/ void taskBackground( void ) { while ( 1 ) { // manage the watchdog execWatchdogMgmt(); } }