nRF24L01开发指导

源代码在线查看: delays.h

软件大小: 223 K
上传用户: Fiona1207
关键词: nRF 24L L01 24
下载地址: 免注册下载 普通下载 VIP

相关代码

				/*****************************************************************************
				*
				* 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_
							

相关资源