diff --git a/src/hal/ttgotdisplay.h b/src/hal/ttgotdisplay.h new file mode 100644 index 00000000..d5deb0ec --- /dev/null +++ b/src/hal/ttgotdisplay.h @@ -0,0 +1,58 @@ +// clang-format off +// upload_speed 921600 +// board m5stack-core-esp32 + +#ifndef _TTGOTDISPLAY_H +#define _TTGOTDISPLAY_H + +#include + +#define DISABLE_BROWNOUT 1 // comment out if you want to keep brownout feature + +#define HAS_DISPLAY 2 // TFT-LCD, support work in progess, not ready yet +//#define MY_DISPLAY_FLIP 1 // use if display is rotated + +#define HAS_LED NOT_A_PIN // no on board LED (?) +#define HAS_BUTTON (35) // on board button A + +// power management settings +#define HAS_IP5306 1 // has IP5306 chip +#define PMU_CHG_CURRENT 2 // battery charge current +// possible values: 0:200mA, 1:400mA, *2:500mA, 3:600mA +#define PMU_CHG_CUTOFF 0 // battery charge cutoff +// possible values: *0:4.2V, 1:4.3V, 2:4.35V, 3:4.4V + +// Display Settings +#define MY_DISPLAY_WIDTH 135 +#define MY_DISPLAY_HEIGHT 240 +#define MY_DISPLAY_INVERT 1 + +// setting for M5 display +#define USER_SETUP_LOADED 1 +#define ST7789_DRIVER 1 + +#define CGRAM_OFFSET + +#define TFT_MOSI MOSI // SPI +#define TFT_SCLK CLK // SPI +#define TFT_CS GPIO_NUM_5 // Chip select control +#define TFT_DC GPIO_NUM_16 // Data Command control +#define TFT_RST GPIO_NUM_23 // Reset +#define TFT_BL GPIO_NUM_4 // LED back-light + +#define TFT_RGB_ORDER TFT_BGR // Colour order Blue-Green-Red + +#define LOAD_GLCD // Font 1. Original Adafruit 8 pixel font needs ~1820 bytes in FLASH +#define LOAD_FONT2 // Font 2. Small 16 pixel high font, needs ~3534 bytes in FLASH, 96 characters +#define LOAD_FONT4 // Font 4. Medium 26 pixel high font, needs ~5848 bytes in FLASH, 96 characters +#define LOAD_FONT6 // Font 6. Large 48 pixel font, needs ~2666 bytes in FLASH, only characters 1234567890:-.apm +#define LOAD_FONT7 // Font 7. 7 segment 48 pixel font, needs ~2438 bytes in FLASH, only characters 1234567890:-. +#define LOAD_FONT8 // Font 8. Large 75 pixel font needs ~3256 bytes in FLASH, only characters 1234567890:-. +//#define LOAD_FONT8N // Font 8. Alternative to Font 8 above, slightly narrower, so 3 digits fit a 160 pixel TFT +#define LOAD_GFXFF // FreeFonts. Include access to the 48 Adafruit_GFX free fonts FF1 to FF48 and custom fonts +#define SMOOTH_FONT + +#define SPI_FREQUENCY 40000000 +#define SPI_READ_FREQUENCY 6000000 + +#endif