⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 delays.h

📁 MSP430的SPI接口的例子程序。连接NRF24L01实现定长的数据包通信
💻 H
字号:
/*****************************************************************************
*
* 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -