delay.h

来自「nordic semiconductor」· C头文件 代码 · 共 34 行

H
34
字号
// 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 + =
减小字号Ctrl + -
显示快捷键?