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

📄 led.h

📁 《C++嵌入系统编程》实例源代码,对做嵌入式开发有一定的参考作用
💻 H
字号:
/**********************************************************************
 *
 * Filename:    led.h
 * 
 * Description: Header file for LED-related functionality.
 *
 * Notes:       The constants in this file are specific to Arcom's 
 *              Target188EB hardware.
 *
 * 
 * Copyright (c) 1998 by Michael Barr.  This software is placed into
 * the public domain and may be used for any purpose.  However, this
 * notice must not be changed or removed and no warranty is either
 * expressed or implied by its publication or distribution.
 **********************************************************************/

#ifndef _LED_H
#define _LED_H


#define LED_RED   0x80      /* The red LED is controlled by bit 7.    */
#define LED_GREEN 0x40      /* The green LED is controlled by bit 6.  */

void toggleLed(unsigned char ledMask);


#endif /* _LED_H */

⌨️ 快捷键说明

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