mirror of
https://github.com/ByteWelder/Tactility.git
synced 2026-02-19 03:13:14 +00:00
22 lines
437 B
C++
22 lines
437 B
C++
#include "devices/Display.h"
|
|
#include "devices/Sdcard.h"
|
|
|
|
#include <Tactility/hal/Configuration.h>
|
|
|
|
bool initBoot();
|
|
|
|
using namespace tt::hal;
|
|
|
|
static std::vector<std::shared_ptr<tt::hal::Device>> createDevices() {
|
|
return {
|
|
createDisplay(),
|
|
createSdCard()
|
|
};
|
|
}
|
|
|
|
extern const Configuration hardwareConfiguration = {
|
|
.initBoot = initBoot,
|
|
.uiScale = UiScale::Smallest,
|
|
.createDevices = createDevices
|
|
};
|