Initial commit

This commit is contained in:
2026-07-27 18:42:39 +08:00
commit 83d61b12b3
97 changed files with 55082 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
#ifndef LED_H
#define LED_H
#include "gd32e23x.h"
#include "board_config.h"
void led_init(void);
void led_on(void);
void led_off(void);
void led_toggle(void);
void led_heart_beat(void);
#endif // LED_H