| 250 | } |
| 251 | |
| 252 | std::string GroundTelemetry::create_debug() const { |
| 253 | std::stringstream ss; |
| 254 | // ss<<"GT:\n"; |
| 255 | if (m_wb_endpoint) { |
| 256 | ss << m_wb_endpoint->createInfo(); |
| 257 | } |
| 258 | if (m_gcs_endpoint) { |
| 259 | ss << m_gcs_endpoint->createInfo(); |
| 260 | } |
| 261 | return ss.str(); |
| 262 | } |
| 263 | |
| 264 | void GroundTelemetry::add_settings_generic( |
| 265 | const std::vector<openhd::Setting>& settings) { |
nothing calls this directly
no test coverage detected