mirror of
https://github.com/ByteWelder/Tactility.git
synced 2026-08-17 23:55:04 +00:00
20 lines
406 B
C++
20 lines
406 B
C++
#include "devices/Power.h"
|
|
#include "devices/TrackballDevice.h"
|
|
|
|
#include <Tactility/hal/Configuration.h>
|
|
|
|
bool initBoot();
|
|
|
|
using namespace tt::hal;
|
|
|
|
static std::vector<std::shared_ptr<tt::hal::Device>> createDevices() {
|
|
return {
|
|
createPower()
|
|
// std::make_shared<TrackballDevice>(),
|
|
};
|
|
}
|
|
|
|
extern const Configuration hardwareConfiguration = {
|
|
.createDevices = createDevices
|
|
};
|