while (TRUE)
{
/* call the periodic task function */
USB_CDC_Periodic_Task();
/*check whether enumeration is complete or not */
if((start_app==TRUE) && (start_transactions==TRUE))
{
Virtual_Com_App(); //Virtual_Com_App() can't be executed because start_app and start_transactions ale FALSE
}
}/* Endwhile */
}