ArduPilot EU Dev Call 2026-05-27

Attendees (max): 9


UTC0702

Peter: get_hagl() is used only for MAVLink reporting. Not for navigation.

  • This HAGL will be stored in the AHRS results object.

Andrew: Approved!


UTC0706

P: This will return DCM is get location is not available (and DCM is active).
A: Merged!


UTC0708

P: The two drivers are identical.

  • Jake Dahl at first would delete the old driver. But lots of bugs were discovered in the new one, which was also not tested on a stable version.
  • So we’ll keep the old one and delete the new.

Andy: Can we make both names work in the hwdef?
P: Why? There is only one instance and I changed it manually.
Andy: In order to let people know that we still support the device with the other name.

  • I also think the external probing will change behaviour now.

A: What we could do is change Python code in waf and declare aliases.


UTC0719

A: Looks good to me.
P: A comment is wrong and needs fixing.

Merged!


UTC0725

Andy: VTXs say they have 4 states of power, but the last, higher one is not available.

  • Now we’ll try a few times to set it and we’ll give up.

P: Approved and MergeOnCIPass!


UTC0736

P: Approved and MergeOnCIPass!


UTC0738

P: Some improvements were skipped in the autotests.
Randy: Please update the display names according to suggestions.


UTC0745

P: We probably want to disentangle takeoff expected and ground effect expected flags.
R: What’s the benefit of that?
P: We use takeoff expected for other, unrelated things. Plane uses it too, so placing it under Copter won’t work.
R: How about a Q_ prefix?
P: Having them in Baro would make them common. But Q_ would also work.
R: Yes, we probably need a small class in AP_Vehicle, so that it can be commonly referred to.
P: We could declare them in AHRS, since that’s what it’s used for.
R: I don’t want to pass vehicle parameters down to AHRS, it should lie on a layer that is below the vehicle, independent of it.
A: We could do away with that timer too? We can be flying indefinitely in ground effect.
R: No, we don’t fuse barometer when we’re in ground effect. So at some point we’ll need to fuse an altitude source.

  • Regarding the parameters, yes, let’s move them in an AP_Vehicle class, along with some functionality. so that it can be used by Plane too.

Andy: Sorry, I don’t have the time to test plane.


UTC0839

Andy: We need to force-push the ChibiOS branch.
A: Done!

  • It would be nice if you tagged the upstream ChibiOS base, so that we don’t go searching for our own commits to rebase next time.

UTC0844

https://github.com/ArduPilot/mavlink/pull/2500

A: We need to test it a little.