mirror of
https://github.com/ByteWelder/Tactility.git
synced 2026-02-18 10:53:17 +00:00
- Implement CrowPanel Advance 3.5" - New driver subproject: ILI9488 - New driver subproject: GT911 - Refactor T-Deck to use new driver subproject - Fix for `flash.ps1`: don't set flash speed
9 lines
320 B
C
9 lines
320 B
C
#pragma once
|
|
|
|
#define CROWPANEL_LCD_SPI_HOST SPI2_HOST
|
|
#define CROWPANEL_LCD_PIN_CS GPIO_NUM_40
|
|
#define CROWPANEL_LCD_PIN_DC GPIO_NUM_41 // RS
|
|
#define CROWPANEL_LCD_HORIZONTAL_RESOLUTION 320
|
|
#define CROWPANEL_LCD_VERTICAL_RESOLUTION 480
|
|
#define CROWPANEL_LCD_SPI_TRANSFER_HEIGHT (CROWPANEL_LCD_VERTICAL_RESOLUTION / 10)
|