/****************************************************************************** * @name main * * @brief This routine is the starting point of the application * * @param None * * @return None * ***************************************************************************** * This function initializes the system, enables the interrupts and calls the * application *****************************************************************************/ void main(void) { Init_Sys(); /* initial the system */ #if MAX_TIMER_OBJECTS (void)TimerQInitialize(0); #endif (void)TestApp_Init(); /* Initialize the USB Test Application */ #if MAX_TIMER_OBJECTS StartKeyPressSimulationTimer(); #endif while(TRUE) { Watchdog_Reset(); /* Call the application task */ TestApp_Task(); } }
/****************************************************************************** * @name main * * @brief This routine is the starting point of the application * * @param None * * @return None * ***************************************************************************** * This function initializes the system, enables the interrupts and calls the * application *****************************************************************************/ void main(void) { /* Bootloader application */ GPIO_Bootloader_Init(); Switch_mode(); /* switch between the application and the bootloader mode */ Init_Sys(); /* initial the system */ #if MAX_TIMER_OBJECTS (void)TimerQInitialize(0); #endif (void)TestApp_Init(); /* Initialize the USB Test Application */ while(TRUE) { Watchdog_Reset(); /* Call the application task */ TestApp_Task(); } }