MCPcopy Create free account
hub / github.com/OpenHD/OpenHD / add_settings_generic

Method add_settings_generic

OpenHD/ohd_telemetry/src/OHDTelemetry.cpp:64–71  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

62}
63
64void OHDTelemetry::add_settings_generic(
65 const std::vector<openhd::Setting> &settings) const {
66 if (m_profile.is_air) {
67 m_air_telemetry->add_settings_generic(settings);
68 } else {
69 m_ground_telemetry->add_settings_generic(settings);
70 }
71}
72void OHDTelemetry::settings_generic_ready() const {
73 if (m_profile.is_air) {
74 m_air_telemetry->settings_generic_ready();

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected