Partial UDP telemetry - Params not loading in QGC

Hi everyone,

​I’m having some trouble with my bait boat setup and could really use some advice. My UDP connection seems to be only partially working, and I’ve run out of ideas.

​Because this is a bait boat project, my ultimate goal is to use QGroundControl (QGC) wirelessly at the waterfront, but due to this issue, QGC is completely unusable for me right now.

My Setup:

The Problem (What is NOT loading):

  • ​Waypoints (WP)
  • ​Home Point
  • ​Full Parameter List (Stalls out and fails to load in QGC)

What IS working (Partial telemetry is coming through):

  • ​Virtual horizon works perfectly.
  • ​It sees the boat’s GPS signal and places it accurately on the map.
  • ​Some basic settings/commands still work.

What I’ve tried so far:

  • ​I’ve changed and tested various Baudrates both in ArduPilot and on the web interface, but the issue persists. It just won’t pull the full parameters.

​Has anyone experienced this kind of partial data loading over UDP with QGC using this ESP firmware? Any ideas on what parameters or hardware settings I should check next?

​Thanks in advance!

I would suggest to check whether Settings > Telemtry > Stream Rates is set to “Controlled by Vehicle”. If this feature is disabled, you should be getting telemtry as this overrides the settings in ArduPilot.
If enabled and you would like to keep it so, try setting the telemetry stream rates in ArduPilot to atleast 1Hz and test to see if it works.

Baudrate for the Serial port on the FC used, SERIALx_BAUD, and the MAVLink WiFi Bridge setting to 921600 for starters. I use thoese on lots of models and it’s straight forward. Here is one I just connected:

I don’t think k you need to set it this high. I’ve been using 115200

Why not? Works for me. Perhaps people are missing the Ardupilot Wiki… These are not that complicated.
ESP8266 Telemetry

Well one reason is that we may need more range. I haven’t tested at 921000 because 115200 already works for me. I am using it for guided missions but you may be using it as a substitute for USB.
My point being it unlikely the OPs’s issue is due to low baid rate. AFAIK, it should work perfectly well even at lower baud rates

Mine are generally good to ~50m but can work up to 100m unobstructed . I use other telemetry systems for anything further than that.

Thank you for your help. I really appreciate it. I currently have the settings shown in the pictures, but I haven’t noticed any changes!

Video link: https://files.fm/u/k7f7s4ajpw

Did this use to work earlier?
Can you still set the telemetry rate overrides in QGC though?

Yes. It used to work.

Loading gets stuck in QGC too!

Hmm, no idea why it gets stuck. Hope you find help

Thank you. I welcome any advice.

Sure you flashed the right firmware for the module you have? I suppose so if it worked before.

Yes, of course

https://www.mateksys.com/?portfolio=f405-wte#tab-id-5

Does it work on MP?
Are you using the same QGC version as before? (Just in case)

It doesn’t load completely in either MP or QGC. Yes, it’s the same version of QGC.

I’ve found the source of the issue! Since one of the jumpers bridges RX1 and ETX on the Mateksys F405-WTE to enable WiFi Telemetry, while the radio control signal cable is connected to the RX2 port, they are conflicting.

Why does RX2 “knock out” the WiFi RX1 port on the Mateksys F405-WTE?

  • Port Mapping: In the architecture of the Mateksys F405-WTE, RX2 defaults to the SERIAL6 port in ArduPilot and is dedicated to the RC (radio control signal) input.

  • Data Overload: Modern radio control protocols (such as SBUS, CRSF, or IBUS) send high-density data packets hundreds of times per second (up to 400 Hz).

  • Hardware Suppression: If the radio receiver is connected to RX2, the microcontroller’s Direct Memory Access (DMA) channel and interrupt handler become so overloaded with the continuous decoding of incoming RC signals that it physically suppresses the interrupt requests arriving on the adjacent RX1 port (the WiFi MAVLink channel).

  • Crosstalk: Additionally, the power draw or signal noise from the high-frequency RC receiver module can cause crosstalk on the closely routed RX1 and RX2 traces on the PCB.

The perfect solution to resolve this:

Since the RX2 port hardware-wise “drowns out” the RX1 port, you simply need to separate them physically on the board!

1 Like

Did this actually lead to the solution to your problem?

Yes. I tested it several times!

2 Likes

Can you go into detail about the change you made? Did it require rebuilding the firmware?