Sys_Scheduler.c 287 Bytes
Newer Older
李俭双's avatar
李俭双 committed
1 2 3 4 5 6 7 8 9 10 11 12

#include "Sys_Scheduler.h"
#include "RTE.h"
#include "Components.h"
#include "Application.h"
void Sys_Scheduler_Init(void)
{
    RTE_Tick_Timer_Stop();
    Sys_Scheduler_Start(SYS_TICK_INTERVAL);
    RTE_Tick_Timer_Start(SYS_TICK_INTERVAL, Sys_Scheduler_ISR);
    Sys_Startup_Init();
}