This commit is contained in:
刘正航
2026-04-16 16:55:01 +08:00
commit 609eb878d1
624 changed files with 214375 additions and 0 deletions

31
User/bsp/inc/bsp_led.h Normal file
View 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) *********************************/