除了显示驱动,其余全部测试通过

This commit is contained in:
guo
2026-08-30 14:13:24 +08:00
commit c0ace98dff
146 changed files with 9476 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
#ifndef LED_H
#define LED_H
#include "device/gpio.h"
//上电指示灯
extern int led_status;
#define LED_PIN IO_PORTH_06
//
#define LAMP_WARM_GPIO IO_PORTC_01
#define LAMP_COOL_GPIO IO_PORTC_02
void led_init(void);
void pwm_init(void);
#endif