8 lines
196 B
C
8 lines
196 B
C
#ifndef __TIME_DELAY_H__
|
|
#define __TIME_DELAY_H__
|
|
|
|
// 自封装延时函数
|
|
void time_delay(int sec); // 延时指定秒数
|
|
void delay_ms(int milliseconds); // 延迟指定毫秒数
|
|
|
|
#endif |