mirror of
https://github.com/ByteWelder/Tactility.git
synced 2026-02-19 03:13:14 +00:00
New boards: - LilyGO T-Dongle S3 - M5Stack StickC Plus - M5Stack StickC Plus2 New drivers: - AXP192: power control via I2C - ButtonControl: GPIO button input as LVGL device Other changes: - Updated implementation of AXP192 driver for Core2 board - Fix launcher UX for vertical layout - Fix error when properties file had an empty line - Add `__floatsidf` to `tt_init.cpp`
16 lines
492 B
C++
16 lines
492 B
C++
#pragma once
|
|
|
|
#include "Tactility/hal/display/DisplayDevice.h"
|
|
#include <memory>
|
|
|
|
#define LCD_SPI_HOST SPI2_HOST
|
|
#define LCD_PIN_CS GPIO_NUM_5
|
|
#define LCD_PIN_DC GPIO_NUM_23
|
|
#define LCD_PIN_RESET GPIO_NUM_18
|
|
#define LCD_HORIZONTAL_RESOLUTION 135
|
|
#define LCD_VERTICAL_RESOLUTION 240
|
|
#define LCD_DRAW_BUFFER_HEIGHT (LCD_VERTICAL_RESOLUTION / 3)
|
|
#define LCD_DRAW_BUFFER_SIZE (LCD_HORIZONTAL_RESOLUTION * LCD_DRAW_BUFFER_HEIGHT)
|
|
|
|
std::shared_ptr<tt::hal::display::DisplayDevice> createDisplay();
|