mirror of
https://gitee.com/Lyon1998/pikapython.git
synced 2025-01-15 17:02:53 +08:00
11 lines
160 B
C
11 lines
160 B
C
#ifndef __DELAY_H
|
|
#define __DELAY_H
|
|
#include "air32f10x.h"
|
|
|
|
void Delay_Init(void);
|
|
void Delay_Ms(uint16_t nms);
|
|
void Delay_Us(uint32_t nus);
|
|
|
|
#endif
|
|
|