📄 delay.h
字号:
// delay.h/*********************************************************************** * * Author: Greg Hunter * Company: UTS * Filenames: delay.h, delay.c * Date: 2007/9/6 * File Version: 0.01 * Other Files Required: * Tools Used: Micro-IDE -> 2.16m * SDCC C Compiler -> 2.5 * * Devices Supported: * nRF24E1 * *********************************************************************** * * Description: * routine to delay cpu by multiples of 100us * **********************************************************************/#ifndef Delay_h#define Delay_h// C API for delay.cvoid Delay100us(volatile unsigned char n); // Delay by multiples of 100us // Delay is 1usec for n = 0void Delay5us(void); // Delay 5us#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -