Telemetry port hub

Is it possible to connect a hub to a telemetry port and have multiple devices going through one port like you can with a cam port?

If it’s possible where can I purchase a telemetry port hub similar to a cam port hub?

Mike

I do not know of any off the shelf solutions. However, you could use a raspberryPi running mavproxy to connect over one serial port and share the connection over another serial port (or ports). Mavproxy Documentation

Another option would be to custom program something like a Teensy microcontroller to read and forward the data. You could probably make a proof of concept that ignores the mavlink packets and focuses only on serial bytes received and sent. A more robust solution would want to identify mavlink packets, forward them whole, and avoid collisions.