led.h

来自「This project should serve as an "easy st」· C头文件 代码 · 共 47 行

H
47
字号
/*********************************************************************
*               SEGGER MICROCONTROLLER SYSTEME GmbH                  *
*       Solutions for real time microcontroller applications         *
**********************************************************************
*                                                                    *
*       (C) 2004   SEGGER Microcontroller Systeme GmbH               *
*                                                                    *
*       www.segger.com     Support: support@segger.com               *
*                                                                    *
**********************************************************************
*                                                                    *
*       embOS * Real time operating system for microcontrollers      *
*                                                                    *
**********************************************************************

----------------------------------------------------------------------
File    : LED.h  for LED samples
Purpose : LED interface for various starterboards and embOS LED demo
--------  END-OF-HEADER  ---------------------------------------------
*/

#ifndef LED_H
#define LED.h

/*********************************************************************
*
*       Functions
*
**********************************************************************
*/

void LED_Init(void);
void LED_SetLED0(void);
void LED_ClrLED0(void);
void LED_ToggleLED0(void);

void LED_SetLED1(void);
void LED_ClrLED1(void);
void LED_ToggleLED1(void);

/********************************************************************/

#endif /* not defined LED_H */

/****** EOF *********************************************************/

⌨️ 快捷键说明

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