Ken Van Hoeylandt 497568f85e WIP
2026-06-20 00:52:58 +02:00

19 lines
352 B
C++

#include "devices/Display.h"
#include <Tactility/hal/Configuration.h>
bool initBoot();
using namespace tt::hal;
static std::vector<std::shared_ptr<tt::hal::Device>> createDevices() {
return {
createDisplay(),
};
}
extern const Configuration hardwareConfiguration = {
.initBoot = initBoot,
.createDevices = createDevices
};