delays.h
来自「介绍了ARC4加密算法。以单片机为主控器」· C头文件 代码 · 共 22 行
H
22 行
/*****************************************************************************
*
* File: delays.h
*
* Copyright S. Brennen Ball, 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 long microseconds);
void DelayMS(unsigned long milliseconds);
void DelayS(unsigned long seconds);
#endif //_DELAY_H_
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?