| 472 | } |
| 473 | |
| 474 | void MicrohardLink::transmit_telemetry_data(OHDLink::TelemetryTxPacket packet) { |
| 475 | const auto destination_ip = m_profile.is_air ? DEVICE_IP_GND : DEVICE_IP_AIR; |
| 476 | m_telemetry_tx_rx->forwardPacketViaUDP( |
| 477 | destination_ip, MICROHARD_UDP_PORT_TELEMETRY_AIR_TX, packet.data->data(), |
| 478 | packet.data->size()); |
| 479 | } |
| 480 | |
| 481 | void MicrohardLink::transmit_video_data( |
| 482 | int stream_index, |
nothing calls this directly
no test coverage detected