mirror of
https://github.com/ByteWelder/Tactility.git
synced 2026-02-18 10:53:17 +00:00
To avoid keeping track of a list that maps board project names to board ids. Because of this change, we don't have to manually edit `boards.cmake` anymore when adding a new board.
51 lines
2.1 KiB
C++
51 lines
2.1 KiB
C++
#include "Display.h"
|
|
|
|
#include <Xpt2046Touch.h>
|
|
#include <St7789Display.h>
|
|
#include <PwmBacklight.h>
|
|
#include <Tactility/hal/touch/TouchDevice.h>
|
|
|
|
// Create the XPT2046 touch device (hardware/esp_lcd driver)
|
|
static std::shared_ptr<tt::hal::touch::TouchDevice> createTouch() {
|
|
auto config = std::make_unique<Xpt2046Touch::Configuration>(
|
|
DISPLAY_SPI_HOST, // spi device / bus (SPI2_HOST)
|
|
TOUCH_CS_PIN, // touch CS (IO33)
|
|
(uint16_t)DISPLAY_HORIZONTAL_RESOLUTION, // x max
|
|
(uint16_t)DISPLAY_VERTICAL_RESOLUTION, // y max
|
|
false, // swapXy
|
|
true, // mirrorX
|
|
true // mirrorY
|
|
);
|
|
|
|
return std::make_shared<Xpt2046Touch>(std::move(config));
|
|
}
|
|
|
|
std::shared_ptr<tt::hal::display::DisplayDevice> createDisplay() {
|
|
// Create the ST7789 panel configuration
|
|
St7789Display::Configuration panel_configuration = {
|
|
.horizontalResolution = DISPLAY_HORIZONTAL_RESOLUTION,
|
|
.verticalResolution = DISPLAY_VERTICAL_RESOLUTION,
|
|
.gapX = 0,
|
|
.gapY = 0,
|
|
.swapXY = false,
|
|
.mirrorX = false,
|
|
.mirrorY = false,
|
|
.invertColor = false,
|
|
.bufferSize = DISPLAY_DRAW_BUFFER_SIZE, // 0 -> default 1/10 screen
|
|
.touch = createTouch(),
|
|
.backlightDutyFunction = driver::pwmbacklight::setBacklightDuty,
|
|
.resetPin = GPIO_NUM_NC,
|
|
.rgbElementOrder = LCD_RGB_ELEMENT_ORDER_BGR // BGR for this display
|
|
};
|
|
|
|
// Create the SPI configuration (from EspLcdSpiDisplay base class)
|
|
auto spi_configuration = std::make_shared<EspLcdSpiDisplay::SpiConfiguration>(EspLcdSpiDisplay::SpiConfiguration {
|
|
.spiHostDevice = DISPLAY_SPI_HOST,
|
|
.csPin = DISPLAY_PIN_CS,
|
|
.dcPin = DISPLAY_PIN_DC,
|
|
.pixelClockFrequency = 40'000'000,
|
|
.transactionQueueDepth = 10
|
|
});
|
|
|
|
return std::make_shared<St7789Display>(panel_configuration, spi_configuration);
|
|
} |