copy the 2.6 incode code

This commit is contained in:
muyuchl
2025-04-26 15:58:00 +08:00
parent 2c9b333b97
commit ca12f0757b
8 changed files with 1970 additions and 63 deletions

15
epd/common.h Normal file
View File

@@ -0,0 +1,15 @@
#ifndef _COMMON_H_
#define _COMMON_H_
#include <stdint.h>
#include <stddef.h> // NULL
#define CODE
typedef unsigned int uint;
typedef uint8_t uint8;
typedef uint16_t uint16;
typedef uint32_t uint32;
#endif // !_COMMON_H_