#ifndef APP_TASKS_TASKBG_H_ #define APP_TASKS_TASKBG_H_ /** * @defgroup TaskBackground TaskBackground * @brief The background task is an infinite loop running in the background * called by main() after initialization. The background task executes * functions that may take a long time to complete or are very low priority. * This includes non-volatile memory operations, battery monitoring and * watchdog management. * * @addtogroup TaskBackground * @{ */ // Public function prototypes void taskBackground( void ); /**@}*/ #endif