New
This commit is contained in:
31
User/bsp/inc/bsp_led.h
Normal file
31
User/bsp/inc/bsp_led.h
Normal file
@@ -0,0 +1,31 @@
|
||||
/*
|
||||
*********************************************************************************************************
|
||||
*
|
||||
* 模块名称 : LED指示灯驱动模块
|
||||
* 文件名称 : bsp_led.h
|
||||
* 版 本 : V1.0
|
||||
* 说 明 : 头文件
|
||||
*
|
||||
* Copyright (C), 2013-2014, 安富莱电子 www.armfly.com
|
||||
*
|
||||
*********************************************************************************************************
|
||||
*/
|
||||
|
||||
#ifndef __BSP_LED_H
|
||||
#define __BSP_LED_H
|
||||
|
||||
#include <stdint.h>
|
||||
|
||||
/* 供外部调用的函数声明 */
|
||||
void bsp_InitLed(void);
|
||||
void bsp_LedOn(uint8_t _no);
|
||||
void bsp_LedOff(uint8_t _no);
|
||||
void bsp_LedToggle(uint8_t _no);
|
||||
uint8_t bsp_IsLedOn(uint8_t _no);
|
||||
void bsp_LedAllOff(void);
|
||||
void bsp_ChannelSelect(uint8_t _ch);
|
||||
void bsp_ResSelect(uint8_t _res);
|
||||
|
||||
#endif
|
||||
|
||||
/***************************** 安富莱电子 www.armfly.com (END OF FILE) *********************************/
|
||||
Reference in New Issue
Block a user