1
0
mirror of https://github.com/jscrane/r65emu.git synced 2024-06-08 07:29:37 +00:00
r65emu/hw/ttgo-t7-v14-mini32.h

29 lines
562 B
C
Raw Normal View History

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