| 9 | using namespace tt::hal; |
| 10 | |
| 11 | static std::vector<std::shared_ptr<tt::hal::Device>> createDevices() { |
| 12 | return { |
| 13 | createDisplay(), |
| 14 | std::make_shared<Power>(), |
| 15 | ButtonControl::createOneButtonControl(0) |
| 16 | }; |
| 17 | } |
| 18 | |
| 19 | extern const Configuration hardwareConfiguration = { |
| 20 | .initBoot = initBoot, |
nothing calls this directly
no test coverage detected