/************************************************************************** * * Copyright (c) 2024-2026 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.c * * @author (last) Dara Navaei * @date (last) 21-Jan-2026 * * @author (original) Dara Navaei * @date (original) 01-Aug-2024 * ***************************************************************************/ #include "Download.h" #include "TaskBG.h" /** * @addtogroup TaskBackground * @{ */ // ********** private definitions ********** // ********** private data ********** /*********************************************************************//** * @brief * The taskBackground function handles the idle Background Task loop. * @details \b Inputs: none * @details \b Outputs: Background task functions are called. * @return none *************************************************************************/ void taskBackground( void ) { #ifndef _VECTORCAST_ // Cannot have infinite loop in unit test tool while ( 1 ) #endif { execDownload(); // TODo add watchdog } } /**@}*/