firt commit

This commit is contained in:
2026-06-17 17:28:22 +08:00
commit b3bb7002cd
18 changed files with 96507 additions and 0 deletions

12
main/lcd_reg.h Normal file
View File

@@ -0,0 +1,12 @@
#ifndef LCD_REG_H
#define LCD_REG_H
#include <stdint.h>
#define LCD_WIDTH 320
#define LCD_HEIGHT 240
void lcd_reg_init(void);
void lcd_reg_draw_image(const uint16_t *image);
#endif