/************************************************************************** * * Copyright (c) 2024-2025 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 TaskBG.h * * @author (last) Sean Nash * @date (last) 26-Aug-2024 * * @author (original) Sean Nash * @date (original) 01-Aug-2024 * ***************************************************************************/ #ifndef __TASK_BACKGROUND_H__ #define __TASK_BACKGROUND_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