/* * TaskBG.c * * Created on: Jul 31, 2024 * Author: fw */ #include "Download.h" #include "TaskBG.h" void taskBackground( void ) { #ifndef _VECTORCAST_ // Cannot have infinite loop in unit test tool while ( 1 ) #endif { execDownload(); } }