M5Stack PaperS3 improvements and other bug fixes (#512)

This commit is contained in:
Shadowtrance
2026-03-07 06:45:56 +10:00
committed by GitHub
parent 9fc0aa51d7
commit 2de35b2d2d
28 changed files with 1141 additions and 372 deletions
@@ -1,19 +1,22 @@
#include "devices/Display.h"
#include "devices/SdCard.h"
#include "devices/Power.h"
#include <Tactility/hal/Configuration.h>
using namespace tt::hal;
bool initBoot();
static DeviceVector createDevices() {
auto touch = createTouch();
return {
createPower(),
createDisplay(),
createSdCard(),
createDisplay(touch)
};
}
extern const Configuration hardwareConfiguration = {
.initBoot = nullptr,
.initBoot = initBoot,
.createDevices = createDevices
};