| 51 | } |
| 52 | |
| 53 | GPIOControl::GPIOControl() { |
| 54 | m_settings = std::make_unique<GPIOControlSettingsHolder>(); |
| 55 | const auto& tmp = m_settings->get_settings(); |
| 56 | configure_gpio(2, tmp.gpio_2); |
| 57 | configure_gpio(2, tmp.gpio_26); |
| 58 | } |
| 59 | |
| 60 | std::vector<openhd::Setting> GPIOControl::get_all_settings() { |
| 61 | std::vector<openhd::Setting> ret; |
nothing calls this directly
no test coverage detected