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.

15 lines
226 B

#ifndef BSP_LED_H
#define BSP_LED_H
#include "bsp_config.h"
#define RED_LED P55 //单色绿灯
#define GREEN_LED P26 //双色红灯
#define LED_ON 1
#define LED_OFF 0
extern void L2_led_init();
#endif