delays.h

来自「nRF24L01开发指导」· C头文件 代码 · 共 22 行

H
22
字号
/*****************************************************************************
*
* File: delays.h
* 
* Copyright S. Brennen Ball, 2006-2007
* 
* The author provides no guarantees, warantees, or promises, implied or
*	otherwise.  By using this software you agree to indemnify the author
* 	of any damages incurred by using it.
* 
*****************************************************************************/

#ifndef _DELAY_H_
#define _DELAY_H_

//delay functions
void DelayUS(unsigned int microseconds);
void DelayMS(unsigned int milliseconds);
void DelayS(unsigned int seconds);

#endif //_DELAY_H_

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?