r65emu/hw/ttgo-t7-v14-mini32.h

29 lines
562 B
C

// LilyGO TTGO VGA32
// https://www.tinytronics.nl/shop/en/development-boards/microcontroller-boards/with-wi-fi/lilygo-ttgo-vga32-esp32
// Display
#define USE_VGA
#if !defined(VGA_RESOLUTION)
#define VGA_RESOLUTION VGA_480x300_75Hz
//#define VGA_RESOLUTION VGA_320x200_75HzRetro
#endif
// PS/2 Keyboard
#define USE_KBD
#define KBD_DATA 32
#define KBD_IRQ 33
// 64kB RAM
#define RAM_SIZE 0x10000u
// Sound: dac and pwm
#define DAC_SOUND 25
#define PWM_SOUND 25
// Storage
#if !defined(NO_STORAGE)
#undef USE_SD
#undef USE_LITTLEFS
#define USE_SPIFFS
#endif