| 77 | } |
| 78 | } |
| 79 | void OHDTelemetry::add_settings_camera_component( |
| 80 | int camera_index, const std::vector<openhd::Setting> &settings) const { |
| 81 | // we only have cameras on the air telemetry unit |
| 82 | assert(m_profile.is_air); |
| 83 | // only 2 cameras suported for now. |
| 84 | m_air_telemetry->add_settings_camera_component(camera_index, settings); |
| 85 | } |
| 86 | |
| 87 | void OHDTelemetry::set_link_handle(std::shared_ptr<OHDLink> link) { |
| 88 | if (link == nullptr) { |
nothing calls this directly
no outgoing calls
no test coverage detected