| 144 | } |
| 145 | |
| 146 | bool initBoot() { |
| 147 | LOGGER.info("initBoot()"); |
| 148 | |
| 149 | auto controller = device_find_by_name("i2c_internal"); |
| 150 | axp2101 = std::make_shared<Axp2101>(controller); |
| 151 | aw9523 = std::make_shared<Aw9523>(controller); |
| 152 | |
| 153 | return initPowerControl() && initGpioExpander(); |
| 154 | } |
nothing calls this directly
no test coverage detected