SmartCar-V1/Code/bsp/inc/bsp_led.h

27 lines
746 B
C
Raw Normal View History

/*
*********************************************************************************************************
*
* : LED指示灯驱动模块
* : bsp_led.h
* : V1.0
* :
*
* Copyright (C), 2013-2014, www.armfly.com
*
*********************************************************************************************************
*/
#ifndef __BSP_LED_H
#define __BSP_LED_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);
#endif
/***************************** 安富莱电子 www.armfly.com (END OF FILE) *********************************/