| 7 | using namespace tt::hal; |
| 8 | |
| 9 | static DeviceVector createDevices() { |
| 10 | return { |
| 11 | axp2101, |
| 12 | aw9523, |
| 13 | std::make_shared<Axp2101Power>(axp2101), |
| 14 | createDisplay() |
| 15 | }; |
| 16 | } |
| 17 | |
| 18 | extern const Configuration hardwareConfiguration = { |
| 19 | .initBoot = initBoot, |
nothing calls this directly
no test coverage detected