switch_test/User/systick.h

13 lines
195 B
C

#ifndef __SYSTICK_H
#define __SYSTICK_H
#include "stm32f4xx.h"
void SysTick_Init(void);
void Delay_us(__IO u32 nTime);
#define Delay_ms(x) Delay_us(100*x) //µ¥Î»ms
#endif /* __SYSTICK_H */