开关控制led灯

This commit is contained in:
2026-08-11 23:30:04 +08:00
parent 57e7ee15e5
commit beea93edb8
6 changed files with 109 additions and 27 deletions

11
BSP/LED.h Normal file
View File

@@ -0,0 +1,11 @@
#ifndef __LED_H
#define __LED_H
void LED_Init(void);
void LED0_ON(void);
void LED0_OFF(void);
void LED0_TOGGLE(void);
void LED1_ON(void);
void LED1_OFF(void);
void LED1_TOGGLE(void);
#endif