New kernel drivers and device migrations (#563)

This commit is contained in:
Ken Van Hoeylandt
2026-07-14 20:26:57 +02:00
committed by GitHub
parent 955416dac8
commit 8af6204ba1
215 changed files with 6359 additions and 3633 deletions
@@ -7,7 +7,7 @@
#include <PwmBacklight.h>
static bool initBoot() {
static bool init_boot() {
if (!driver::pwmbacklight::init(LCD_PIN_BACKLIGHT)) {
return false;
}
@@ -42,6 +42,6 @@ static tt::hal::DeviceVector createDevices() {
}
extern const tt::hal::Configuration hardwareConfiguration = {
.initBoot = initBoot,
.initBoot = init_boot,
.createDevices = createDevices
};