/****************************************************************************** * @file led_manager.h * @brief CBR3 单 LED(PC2)通道与事件表 * @author cyWu <1917507415@qq.com> * @date 2026.08.29 * @version V1.0.0,首次发布(单灯版,删红绿双通道) ******************************************************************************/ #ifndef __LED_MANAGER_H__ #define __LED_MANAGER_H__ #include "led.h" typedef enum { LED_CH_ON = 0, /**< 单灯唯一通道 */ LED_CH_MAX } LedChannel_t; /** * @brief 注册 GPIO 回调并装载 CBR3 事件表 * @return 无 */ void user_led_init(void); /** * @brief 跑一轮 LED 事件 * @return 无 */ void user_led_handle(void); #endif /* __LED_MANAGER_H__ */