12345678910111213141516171819202122232425262728 |
- #include "sys_task.h"
- #include "CodePara.h"
- //#include "ClassB.h"
- //#include "api.h"
- #include "board_config.h"
- #include "TimeTask_Event.h"
- #include "tbt.h"
- void SysTask1Ms()
- {
- cp_ulSystickCnt++;
- /* 1ms and Timing Event */
- TimingTaskTimerServer();
- Event_1ms();
- /* TBT interrupt */
- tbt_voIsr();
- /* UART */
- uart_voApplTimer();
- }
- void SysTask10Ms()
- {
-
- }
|