mirror of
https://github.com/ByteWelder/Tactility.git
synced 2026-04-18 09:25:06 +00:00
23 lines
421 B
C++
23 lines
421 B
C++
#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() {
|
|
return {
|
|
createPower(),
|
|
createDisplay(),
|
|
createSdCard(),
|
|
};
|
|
}
|
|
|
|
extern const Configuration hardwareConfiguration = {
|
|
.initBoot = initBoot,
|
|
.createDevices = createDevices
|
|
};
|