#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(); } } /**@}*/