Commit a166e055 authored by 时海鑫's avatar 时海鑫

Merge branch 'dev' into 'master'

test4

See merge request !19
parents e424bd99 dfde5d3b
#include "Sys_Scheduler.h"
#include "RTE.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);
}
#include "Sys_Scheduler_Lib.h"
#define SYS_TICK_INTERVAL (1000UL) /* us */
extern void Sys_Scheduler_Init(void);
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment