This repository has been archived on 2024-12-31. You can view files and clone it, but cannot push or open issues or pull requests.
|
#ifndef _DELAY_H
|
|
#define _DELAY_H
|
|
|
|
#include "main.h"
|
|
|
|
void delay_init(void); //延时函数初始化
|
|
void delay_10ms(int tm);
|
|
void delay_us(uint32_t nus);
|
|
void delay_ns(int tm);
|
|
void delay(unsigned long count);
|
|
|
|
|
|
#endif
|