update panel & chip datasheet

This commit is contained in:
YXZhu
2025-11-15 23:06:12 +08:00
parent 116a1de56b
commit 7c94d3d142
35 changed files with 8276 additions and 0 deletions
@@ -0,0 +1,28 @@
#include "sys.h"
#include "delay.h"
#define SPI_OUT 1
#define SPI_IN 0
#define Epaper_EN PAout(12) // Epaper_EN
#define Epaper_BUSY GPIO_ReadInputDataBit(GPIOC, GPIO_Pin_9) //
#define Epaper_RESET PCout(8) // RESET
#define Epaper_BS PAout(8) // BS
#define Epaper_DC PCout(7) // D/C#
#define Epaper_CS PCout(6) //
#define SPI_CLK PBout(13) //
#define SPI_MOSI PBout(15) // SDO
#define MAX_LINE_BYTES 16
#define MAX_COLUMN_BYTES 250
#define ALLSCREEN_BYTES 4000
#define X_Addr_Start 0x01
#define X_Addr_End 0x10
#define Y_Addr_Start_H 0x00
#define Y_Addr_Start_L 0xF9
#define Y_Addr_End_H 0x00
#define Y_Addr_End_L 0x00