You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
303 B

#ifndef BSP_LED_H
#define BSP_LED_H
#include "bsp_config.h"
#define GREEN_LED P14 //绿灯
#define BULE_LED P47 //蓝灯
#define LED_ON 0
#define LED_OFF 1
extern void L2_led_init();
extern void L2_RED_LED_ON();
extern void L2_GREEN_LED_ON();
extern void L2_LED_OFF();
#endif