Merge develop into main (#316)

- Updated all boards to use `hal::Configuration.createDevices`
- Updated all boards to use new directory structure and file naming convention
- Refactored `Xpt2046SoftSpi` driver.
- Created `Axp2101Power` device in `Drivers/AXP2101`
- Removed global static instances from some drivers (instances that kept a reference to the Device*)
- Improved `SystemInfoApp` UI: better memory labels, hide external memory bar when there's no PSRAM
- Fix for HAL: register touch devices after displays are registered
- Fix for Boot splash hanging on WiFi init: unlock file lock after using it
This commit is contained in:
Ken Van Hoeylandt
2025-09-03 22:05:28 +02:00
committed by GitHub
parent 1deaf4c426
commit 1627b9fa85
135 changed files with 543 additions and 577 deletions
+16 -10
View File
@@ -1,21 +1,27 @@
#include "CYD8048S043C.h" // Don't remove, or we get a linker error ("undefined reference to `cyd_8048s043c_config'" - GCC bug?)
#include "PwmBacklight.h"
#include "hal/CydDisplay.h"
#include "hal/CydSdCard.h"
#include "devices/Display.h"
#include "devices/SdCard.h"
using namespace tt::hal;
bool initBoot() {
static bool initBoot() {
// Display backlight
return driver::pwmbacklight::init(GPIO_NUM_2, 200);
}
static DeviceVector createDevices() {
return {
createDisplay(),
createSdCard()
};
}
const Configuration cyd_8048s043c_config = {
.initBoot = initBoot,
.createDisplay = createDisplay,
.sdcard = createSdCard(),
.power = nullptr,
.createDevices = createDevices,
.i2c = {
//Touch
// Touch
i2c::Configuration {
.name = "Internal",
.port = I2C_NUM_0,
@@ -33,7 +39,7 @@ const Configuration cyd_8048s043c_config = {
.clk_flags = 0
}
},
//P4 header, JST SH 1.0, GND / 3.3V / IO17 / IO18
// P4 header, JST SH 1.0, GND / 3.3V / IO17 / IO18
i2c::Configuration {
.name = "External",
.port = I2C_NUM_1,
@@ -53,7 +59,7 @@ const Configuration cyd_8048s043c_config = {
}
},
.spi {
//SD Card
// SD Card
spi::Configuration {
.device = SPI2_HOST,
.dma = SPI_DMA_CH_AUTO,
@@ -79,7 +85,7 @@ const Configuration cyd_8048s043c_config = {
}
},
.uart {
//P4 header, JST SH 1.0, GND / 3.3V / IO17 / IO18
// P4 header, JST SH 1.0, GND / 3.3V / IO17 / IO18
uart::Configuration {
.name = "UART1",
.port = UART_NUM_1,
@@ -1,4 +1,4 @@
#include "CydDisplay.h"
#include "Display.h"
#include <Gt911Touch.h>
#include <PwmBacklight.h>
@@ -1,4 +1,4 @@
#include "CydSdCard.h"
#include "SdCard.h"
#include <Tactility/hal/sdcard/SpiSdCardDevice.h>
#include <Tactility/lvgl/LvglSync.h>