mirror of
https://github.com/ByteWelder/Tactility.git
synced 2026-02-18 19:03:16 +00:00
+ expose lvglSwapBytes setting for the St7789Display driver. + updated all relevant boards accordingly.
48 lines
1.4 KiB
C++
48 lines
1.4 KiB
C++
#include "Display.h"
|
|
|
|
#include <Gt911Touch.h>
|
|
#include <PwmBacklight.h>
|
|
#include <St7789Display.h>
|
|
|
|
static std::shared_ptr<tt::hal::touch::TouchDevice> createTouch() {
|
|
// Note for future changes: Reset pin is 48 and interrupt pin is 47
|
|
auto configuration = std::make_unique<Gt911Touch::Configuration>(
|
|
I2C_NUM_0,
|
|
240,
|
|
320,
|
|
true,
|
|
true,
|
|
false
|
|
);
|
|
|
|
return std::make_shared<Gt911Touch>(std::move(configuration));
|
|
}
|
|
|
|
std::shared_ptr<tt::hal::display::DisplayDevice> createDisplay() {
|
|
St7789Display::Configuration panel_configuration = {
|
|
.horizontalResolution = 320,
|
|
.verticalResolution = 240,
|
|
.gapX = 0,
|
|
.gapY = 0,
|
|
.swapXY = true,
|
|
.mirrorX = true,
|
|
.mirrorY = false,
|
|
.invertColor = true,
|
|
.bufferSize = LCD_BUFFER_SIZE,
|
|
.touch = createTouch(),
|
|
.backlightDutyFunction = driver::pwmbacklight::setBacklightDuty,
|
|
.resetPin = GPIO_NUM_NC,
|
|
.lvglSwapBytes = false
|
|
};
|
|
|
|
auto spi_configuration = std::make_shared<St7789Display::SpiConfiguration>(St7789Display::SpiConfiguration {
|
|
.spiHostDevice = LCD_SPI_HOST,
|
|
.csPin = LCD_PIN_CS,
|
|
.dcPin = LCD_PIN_DC,
|
|
.pixelClockFrequency = 62'500'000,
|
|
.transactionQueueDepth = 10
|
|
});
|
|
|
|
return std::make_shared<St7789Display>(panel_configuration, spi_configuration);
|
|
}
|