| 152 | } |
| 153 | |
| 154 | void EthernetLink::handle_telemetry_data(const uint8_t* data, int data_len) { |
| 155 | // Forward incoming telemetry data to the upper layer |
| 156 | auto shared = std::make_shared<std::vector<uint8_t>>(data, data + data_len); |
| 157 | on_receive_telemetry_data(shared); |
| 158 | } |
nothing calls this directly
no outgoing calls
no test coverage detected