mirror of
https://github.com/ByteWelder/Tactility.git
synced 2026-02-18 19:03:16 +00:00
- Created driver subprojects: `FT5x06`, `FT6x36`, `CST816S`. - Refactored existing projects to use new drivers. - Improve `PwmBacklight` driver: expose frequency, channel id and timer id - Update `build-and-release-all.sh` for recent board addition
9 lines
292 B
C
9 lines
292 B
C
#pragma once
|
|
|
|
#define TDECK_LCD_SPI_HOST SPI2_HOST
|
|
#define TDECK_LCD_PIN_CS GPIO_NUM_12
|
|
#define TDECK_LCD_PIN_DC GPIO_NUM_11 // RS
|
|
#define TDECK_LCD_HORIZONTAL_RESOLUTION 320
|
|
#define TDECK_LCD_VERTICAL_RESOLUTION 240
|
|
#define TDECK_LCD_SPI_TRANSFER_HEIGHT (TDECK_LCD_VERTICAL_RESOLUTION / 10)
|