1 #include "system_config.h" 2 #include "system_definitions.h" 3 SYS_Tasks(void)4 void SYS_Tasks ( void ) 5 { 6 /* Maintain the state machines of all polled modules in the system. */ 7 SYS_DEVCON_Tasks(sysObj.sysDevcon); 8 DRV_TMR_Tasks(sysObj.drvTmr); 9 10 APP_Tasks(); 11 } 12