mirror of
https://github.com/ByteWelder/Tactility.git
synced 2026-02-18 19:03:16 +00:00
- Use DMA buffers for drawing - Fix for draw buffer sizes - Reduced rendering refresh interval - Removed custom icons from wifi app to fix scroll performance issue
12 lines
442 B
C
12 lines
442 B
C
#pragma once
|
|
|
|
// Display
|
|
#define CORES3_LCD_SPI_HOST SPI3_HOST
|
|
#define CORES3_LCD_PIN_CS GPIO_NUM_3
|
|
#define CORES3_LCD_PIN_DC GPIO_NUM_35
|
|
#define CORES3_LCD_HORIZONTAL_RESOLUTION 320
|
|
#define CORES3_LCD_VERTICAL_RESOLUTION 240
|
|
#define CORES3_LCD_BITS_PER_PIXEL 16
|
|
#define CORES3_LCD_DRAW_BUFFER_HEIGHT (CORES3_LCD_VERTICAL_RESOLUTION / 10)
|
|
#define CORES3_LCD_DRAW_BUFFER_SIZE (CORES3_LCD_HORIZONTAL_RESOLUTION * CORES3_LCD_DRAW_BUFFER_HEIGHT)
|