## Time & Date - Added time to statusbar widget - Added Time & Date Settings app - Added TimeZone app for selecting TimeZone - Added `tt::time` namespace with timezone code ## Other changes - Added `SystemEvent` to publish/subscribe to system wide (e.g. for init code, but also for time settings changes) - Changed the way the statusbar widget works: now there's only 1 that gets shown/hidden, instead of 1 instance per app instance. - Moved `lowercase()` function to new namespace: `tt::string` - Increased T-Deck flash & PSRAM SPI frequencies to 120 MHz (from 80 MHz) - Temporary work-around (+ TODO item) for LVGL stack size (issue with WiFi app) - Suppress T-Deck keystroke debugging to debug level (privacy issue) - Improved SDL dependency wiring in various `CMakeLists.txt` - `Loader` service had some variables renamed to the newer C++ style (from previous C style)
21 lines
783 B
C
21 lines
783 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_PIN_BACKLIGHT GPIO_NUM_42
|
|
#define TDECK_LCD_SPI_FREQUENCY 80000000
|
|
#define TDECK_LCD_HORIZONTAL_RESOLUTION 320
|
|
#define TDECK_LCD_VERTICAL_RESOLUTION 240
|
|
#define TDECK_LCD_BITS_PER_PIXEL 16
|
|
#define TDECK_LCD_DRAW_BUFFER_HEIGHT (TDECK_LCD_VERTICAL_RESOLUTION / 10)
|
|
#define TDECK_LCD_SPI_TRANSFER_HEIGHT (TDECK_LCD_VERTICAL_RESOLUTION / 10)
|
|
|
|
// Backlight (PWM)
|
|
#define TDECK_LCD_BACKLIGHT_LEDC_TIMER LEDC_TIMER_0
|
|
#define TDECK_LCD_BACKLIGHT_LEDC_MODE LEDC_LOW_SPEED_MODE
|
|
#define TDECK_LCD_BACKLIGHT_LEDC_CHANNEL LEDC_CHANNEL_0
|
|
#define TDECK_LCD_BACKLIGHT_LEDC_DUTY_RES LEDC_TIMER_8_BIT
|
|
#define TDECK_LCD_BACKLIGHT_LEDC_FREQUENCY (4000)
|
|
|