-
Notifications
You must be signed in to change notification settings - Fork 13.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
RSSI input from ADC not working #2106
Comments
Related #2061 |
I don't have this set up. It will need someone to be debug. @dogmaphobic interested? |
I don't have the hardware for it but I could emulate it (by feeding 0-3.3v to the ADC directly). My receivers output RSSI through PWM and I have not gotten around to build a circuit to convert it to a simple 0-3.3v DC level. |
Added the comment before reading the full #2061 thread. Let me see what I can find... |
Sorry, I've been swamped all day today. I have never built the firmware from sources. Looking at the wiki and wherever else I could find, things seem to be awfully outdated. I couldn't figure out how to set up the environment and how to build it. I will look at it further tomorrow... |
The guides are completely up to date, I verified just a couple of days ago. You don't need a circuit to get something close and reasonable. The PWM is low passed and hence becomes a valid voltage. |
My bad. I don't use homebrew, I use MacPorts instead. When I saw this:
I assumed it was going to look for a file named I will try again :) |
Unless you have good reasons to stick with MacPorts I would recommend homebrew. By now you just can't compare the two and my experience with homebrew has been consistently better. |
No particular reason other than it's what I've been using for the past 10 years. Fink before that. I had homebrew installed a couple months ago just to look at it (while looking for ARM toolchain for the RPI2) but have not gotten around to use it. I wish for 48-hour days :) |
Ok, going through my list of flagged message to look later, I bumped into this. Right off the bat, mavlink_rc_channels_t.rssi is always zero (firmware stable and master). I have the RSSI signal off the RX8 going into the Pixhawk's SBUS input (pin 103?). With that said, should these below be set to something specific? |
That is for RSSI via PWM on a PPM stream (a radio channel, in this case the first one). Not for the analog one that you're using or a plain PWM channel. The issue you're facing is a bug, not a config issue (or the default config is bad) |
Anything specific I should try/do? |
Run If its not config, the most likely issue is in this file, maybe in the init or math here: Also maybe put a printf here and make sure we don't enter the condition by default: Those are all the locations involved in generating the value, so one of them should be responsible. |
Sorry but this is all new territory for me. I've added some printfs here and there to check some values (and to see if some portions of the code run at all) but I do not know where the output of those printfs are going to. They don't show up at the nsh console. For what's worth, here is the output of
When I turn the radio off, the ADC values change:
|
Found it. By default it goes to /dev/null. Running it manually now. |
Sorry, got busy with something else. Back at this. I'm looking at the code that reads the ADC, scales and low passes the value. The math seems wrong and the filter has no history to compute from (rssi is not static and it's always reset to 0 on function entry). The (unfiltered) code should be something like:
The low pass filter should be computed for counts, and then fed through the scale/normalize code. To do that, I would need to have some idea about the sampling rate and the PWM frequency (not to mention going back 20 years so I can remember what Chebyshev had to say about this... Your current filter (v0 * 0.99) + (v1 * 0.01) oscillates too much, which would seem to indicate it's not smoothing properly. This is what the code looks like after I "fixed" it:
Or I completely missed something... |
That makes a lot of sense - could you try one order of magnitude larger coeffifiencients, something like 0.999f and 0.001f? Would be worth to experiment to see how long it takes to decay if you shield the receiver. |
Ugh... Before I go crazy here (busted my cheap Chinese logic analyzer in the process), is there another way to read these (pseudo) PWM RSSI signals? This PWM -> ADC doesn't seem feasible based solely on software. I mean "pseudo" PWM because though the X8R specs says it's a PWM signal with a 1ms cycle and a ratio of 1%~99%, I could not see that on the bench. On my ancient scope, it looked more like a carrier with data bursts. At any rate, I ordered a new (real) analyzer and it should be here in the next few days. I had also previously ordered an EzUFH setup (converting my telemetry to 2.4GHz) so I will have two different types of receivers to test with. I need to see what the thing is sending before making assumptions on the software side... |
You could set up a proper PWM input capture for that, but I'm out of bandwidth to do that. I will put your fix into place for now. |
Ok, fix pushed. I'm closing this since the remaining work would be to improve the PWM RSSI input capture, but the basic functionality is there and the stronger lowpass will help to get a more reasonable reading. |
- mavlink in PX4/Firmware (44d4fe1): mavlink/mavlink@a3558d6 - mavlink current upstream: mavlink/mavlink@23eb98c - Changes: mavlink/mavlink@a3558d6...23eb98c 23eb98ca 2024-05-01 Thomas Frans - style: add EditorConfig and format some files (#2106) 84aaa047 2024-04-25 Hamish Willee - BATTERY_STATUS_V2.capacity_remaining and smartbattery - fix typos (#2108) 77556c7f 2024-04-25 Peter Barker - common.xml: deprecate MAV_CMD_SET_PARAMETER (#2099) 00cd0d64 2024-04-16 amy-chen-skydio - Fix ILLUMINATOR_ERROR_FLAGS (#2101) 2561b79f 2024-04-10 amy-chen-skydio - Add support for illuminators (#2047) 966503a2 2024-04-03 Peter Hall - Common: add MAV_CMD_DO_RETURN_PATH_START (#2088) 4e5d6a25 2024-03-27 Hamish Willee - DO_FENCE_ENABLE when sent as a command (#2091) fabfb1dc 2024-03-21 Peter Barker - common.xml: deprecate the _INT frames (#2092) a13a8de9 2024-03-21 Julian Oes - common: trying to make sense of radius unit (#2097) 1f084f1b 2024-03-20 Marek S. Łukasiewicz - SIM_STATE specify attitude units as rad (#2095)
- mavlink in PX4/Firmware (7c7b2b8): mavlink/mavlink@a3558d6 - mavlink current upstream: mavlink/mavlink@23eb98c - Changes: mavlink/mavlink@a3558d6...23eb98c 23eb98ca 2024-05-01 Thomas Frans - style: add EditorConfig and format some files (#2106) 84aaa047 2024-04-25 Hamish Willee - BATTERY_STATUS_V2.capacity_remaining and smartbattery - fix typos (#2108) 77556c7f 2024-04-25 Peter Barker - common.xml: deprecate MAV_CMD_SET_PARAMETER (#2099) 00cd0d64 2024-04-16 amy-chen-skydio - Fix ILLUMINATOR_ERROR_FLAGS (#2101) 2561b79f 2024-04-10 amy-chen-skydio - Add support for illuminators (#2047) 966503a2 2024-04-03 Peter Hall - Common: add MAV_CMD_DO_RETURN_PATH_START (#2088) 4e5d6a25 2024-03-27 Hamish Willee - DO_FENCE_ENABLE when sent as a command (#2091) fabfb1dc 2024-03-21 Peter Barker - common.xml: deprecate the _INT frames (#2092) a13a8de9 2024-03-21 Julian Oes - common: trying to make sense of radius unit (#2097) 1f084f1b 2024-03-20 Marek S. Łukasiewicz - SIM_STATE specify attitude units as rad (#2095)
- mavlink in PX4/Firmware (b605c91): mavlink/mavlink@a3558d6 - mavlink current upstream: mavlink/mavlink@23eb98c - Changes: mavlink/mavlink@a3558d6...23eb98c 23eb98ca 2024-05-01 Thomas Frans - style: add EditorConfig and format some files (#2106) 84aaa047 2024-04-25 Hamish Willee - BATTERY_STATUS_V2.capacity_remaining and smartbattery - fix typos (#2108) 77556c7f 2024-04-25 Peter Barker - common.xml: deprecate MAV_CMD_SET_PARAMETER (#2099) 00cd0d64 2024-04-16 amy-chen-skydio - Fix ILLUMINATOR_ERROR_FLAGS (#2101) 2561b79f 2024-04-10 amy-chen-skydio - Add support for illuminators (#2047) 966503a2 2024-04-03 Peter Hall - Common: add MAV_CMD_DO_RETURN_PATH_START (#2088) 4e5d6a25 2024-03-27 Hamish Willee - DO_FENCE_ENABLE when sent as a command (#2091) fabfb1dc 2024-03-21 Peter Barker - common.xml: deprecate the _INT frames (#2092) a13a8de9 2024-03-21 Julian Oes - common: trying to make sense of radius unit (#2097) 1f084f1b 2024-03-20 Marek S. Łukasiewicz - SIM_STATE specify attitude units as rad (#2095)
- mavlink in PX4/Firmware (40de05d): mavlink/mavlink@a3558d6 - mavlink current upstream: mavlink/mavlink@23eb98c - Changes: mavlink/mavlink@a3558d6...23eb98c 23eb98ca 2024-05-01 Thomas Frans - style: add EditorConfig and format some files (#2106) 84aaa047 2024-04-25 Hamish Willee - BATTERY_STATUS_V2.capacity_remaining and smartbattery - fix typos (#2108) 77556c7f 2024-04-25 Peter Barker - common.xml: deprecate MAV_CMD_SET_PARAMETER (#2099) 00cd0d64 2024-04-16 amy-chen-skydio - Fix ILLUMINATOR_ERROR_FLAGS (#2101) 2561b79f 2024-04-10 amy-chen-skydio - Add support for illuminators (#2047) 966503a2 2024-04-03 Peter Hall - Common: add MAV_CMD_DO_RETURN_PATH_START (#2088) 4e5d6a25 2024-03-27 Hamish Willee - DO_FENCE_ENABLE when sent as a command (#2091) fabfb1dc 2024-03-21 Peter Barker - common.xml: deprecate the _INT frames (#2092) a13a8de9 2024-03-21 Julian Oes - common: trying to make sense of radius unit (#2097) 1f084f1b 2024-03-20 Marek S. Łukasiewicz - SIM_STATE specify attitude units as rad (#2095)
- mavlink in PX4/Firmware (4babdc3): mavlink/mavlink@a3558d6 - mavlink current upstream: mavlink/mavlink@23eb98c - Changes: mavlink/mavlink@a3558d6...23eb98c 23eb98ca 2024-05-01 Thomas Frans - style: add EditorConfig and format some files (#2106) 84aaa047 2024-04-25 Hamish Willee - BATTERY_STATUS_V2.capacity_remaining and smartbattery - fix typos (#2108) 77556c7f 2024-04-25 Peter Barker - common.xml: deprecate MAV_CMD_SET_PARAMETER (#2099) 00cd0d64 2024-04-16 amy-chen-skydio - Fix ILLUMINATOR_ERROR_FLAGS (#2101) 2561b79f 2024-04-10 amy-chen-skydio - Add support for illuminators (#2047) 966503a2 2024-04-03 Peter Hall - Common: add MAV_CMD_DO_RETURN_PATH_START (#2088) 4e5d6a25 2024-03-27 Hamish Willee - DO_FENCE_ENABLE when sent as a command (#2091) fabfb1dc 2024-03-21 Peter Barker - common.xml: deprecate the _INT frames (#2092) a13a8de9 2024-03-21 Julian Oes - common: trying to make sense of radius unit (#2097) 1f084f1b 2024-03-20 Marek S. Łukasiewicz - SIM_STATE specify attitude units as rad (#2095)
- mavlink in PX4/Firmware (fc9ac20): mavlink/mavlink@a3558d6 - mavlink current upstream: mavlink/mavlink@23eb98c - Changes: mavlink/mavlink@a3558d6...23eb98c 23eb98ca 2024-05-01 Thomas Frans - style: add EditorConfig and format some files (#2106) 84aaa047 2024-04-25 Hamish Willee - BATTERY_STATUS_V2.capacity_remaining and smartbattery - fix typos (#2108) 77556c7f 2024-04-25 Peter Barker - common.xml: deprecate MAV_CMD_SET_PARAMETER (#2099) 00cd0d64 2024-04-16 amy-chen-skydio - Fix ILLUMINATOR_ERROR_FLAGS (#2101) 2561b79f 2024-04-10 amy-chen-skydio - Add support for illuminators (#2047) 966503a2 2024-04-03 Peter Hall - Common: add MAV_CMD_DO_RETURN_PATH_START (#2088) 4e5d6a25 2024-03-27 Hamish Willee - DO_FENCE_ENABLE when sent as a command (#2091) fabfb1dc 2024-03-21 Peter Barker - common.xml: deprecate the _INT frames (#2092) a13a8de9 2024-03-21 Julian Oes - common: trying to make sense of radius unit (#2097) 1f084f1b 2024-03-20 Marek S. Łukasiewicz - SIM_STATE specify attitude units as rad (#2095)
- mavlink in PX4/Firmware (09ec544): mavlink/mavlink@a3558d6 - mavlink current upstream: mavlink/mavlink@23eb98c - Changes: mavlink/mavlink@a3558d6...23eb98c 23eb98ca 2024-05-01 Thomas Frans - style: add EditorConfig and format some files (#2106) 84aaa047 2024-04-25 Hamish Willee - BATTERY_STATUS_V2.capacity_remaining and smartbattery - fix typos (#2108) 77556c7f 2024-04-25 Peter Barker - common.xml: deprecate MAV_CMD_SET_PARAMETER (#2099) 00cd0d64 2024-04-16 amy-chen-skydio - Fix ILLUMINATOR_ERROR_FLAGS (#2101) 2561b79f 2024-04-10 amy-chen-skydio - Add support for illuminators (#2047) 966503a2 2024-04-03 Peter Hall - Common: add MAV_CMD_DO_RETURN_PATH_START (#2088) 4e5d6a25 2024-03-27 Hamish Willee - DO_FENCE_ENABLE when sent as a command (#2091) fabfb1dc 2024-03-21 Peter Barker - common.xml: deprecate the _INT frames (#2092) a13a8de9 2024-03-21 Julian Oes - common: trying to make sense of radius unit (#2097) 1f084f1b 2024-03-20 Marek S. Łukasiewicz - SIM_STATE specify attitude units as rad (#2095)
- mavlink in PX4/Firmware (adcdee1): mavlink/mavlink@a3558d6 - mavlink current upstream: mavlink/mavlink@23eb98c - Changes: mavlink/mavlink@a3558d6...23eb98c 23eb98ca 2024-05-01 Thomas Frans - style: add EditorConfig and format some files (#2106) 84aaa047 2024-04-25 Hamish Willee - BATTERY_STATUS_V2.capacity_remaining and smartbattery - fix typos (#2108) 77556c7f 2024-04-25 Peter Barker - common.xml: deprecate MAV_CMD_SET_PARAMETER (#2099) 00cd0d64 2024-04-16 amy-chen-skydio - Fix ILLUMINATOR_ERROR_FLAGS (#2101) 2561b79f 2024-04-10 amy-chen-skydio - Add support for illuminators (#2047) 966503a2 2024-04-03 Peter Hall - Common: add MAV_CMD_DO_RETURN_PATH_START (#2088) 4e5d6a25 2024-03-27 Hamish Willee - DO_FENCE_ENABLE when sent as a command (#2091) fabfb1dc 2024-03-21 Peter Barker - common.xml: deprecate the _INT frames (#2092) a13a8de9 2024-03-21 Julian Oes - common: trying to make sense of radius unit (#2097) 1f084f1b 2024-03-20 Marek S. Łukasiewicz - SIM_STATE specify attitude units as rad (#2095)
- mavlink in PX4/Firmware (8eb4324): mavlink/mavlink@a3558d6 - mavlink current upstream: mavlink/mavlink@23eb98c - Changes: mavlink/mavlink@a3558d6...23eb98c 23eb98ca 2024-05-01 Thomas Frans - style: add EditorConfig and format some files (#2106) 84aaa047 2024-04-25 Hamish Willee - BATTERY_STATUS_V2.capacity_remaining and smartbattery - fix typos (#2108) 77556c7f 2024-04-25 Peter Barker - common.xml: deprecate MAV_CMD_SET_PARAMETER (#2099) 00cd0d64 2024-04-16 amy-chen-skydio - Fix ILLUMINATOR_ERROR_FLAGS (#2101) 2561b79f 2024-04-10 amy-chen-skydio - Add support for illuminators (#2047) 966503a2 2024-04-03 Peter Hall - Common: add MAV_CMD_DO_RETURN_PATH_START (#2088) 4e5d6a25 2024-03-27 Hamish Willee - DO_FENCE_ENABLE when sent as a command (#2091) fabfb1dc 2024-03-21 Peter Barker - common.xml: deprecate the _INT frames (#2092) a13a8de9 2024-03-21 Julian Oes - common: trying to make sense of radius unit (#2097) 1f084f1b 2024-03-20 Marek S. Łukasiewicz - SIM_STATE specify attitude units as rad (#2095)
- mavlink in PX4/Firmware (83c54de): mavlink/mavlink@a3558d6 - mavlink current upstream: mavlink/mavlink@f1d42e2 - Changes: mavlink/mavlink@a3558d6...f1d42e2 f1d42e27 2024-05-30 Hamish Willee - common - multiplier values for azimuth and eph/epv (#2120) fd4d43fa 2024-05-29 Hamish Willee - Update pymavlink 20240529 (#2119) d7a2b841 2024-05-23 Hamish Willee - common - MAV_CMD_SET_CAMERA_MODE set id (#2111) 27e222d2 2024-05-22 Hamish Willee - Remove summary table and replace with overview (#2117) 934f199b 2024-05-22 Ali Elbashir - Fix missing increment and max value typo (#2114) f31c1926 2024-05-16 Hamish Willee - Add index file to generated mavlink (#2113) 2b87f2e5 2024-05-16 Hamish Willee - Improved docs from XML generation_toolchain (#2103) 23eb98ca 2024-05-01 Thomas Frans - style: add EditorConfig and format some files (#2106) 84aaa047 2024-04-25 Hamish Willee - BATTERY_STATUS_V2.capacity_remaining and smartbattery - fix typos (#2108) 77556c7f 2024-04-25 Peter Barker - common.xml: deprecate MAV_CMD_SET_PARAMETER (#2099) 00cd0d64 2024-04-16 amy-chen-skydio - Fix ILLUMINATOR_ERROR_FLAGS (#2101) 2561b79f 2024-04-10 amy-chen-skydio - Add support for illuminators (#2047) 966503a2 2024-04-03 Peter Hall - Common: add MAV_CMD_DO_RETURN_PATH_START (#2088) 4e5d6a25 2024-03-27 Hamish Willee - DO_FENCE_ENABLE when sent as a command (#2091) fabfb1dc 2024-03-21 Peter Barker - common.xml: deprecate the _INT frames (#2092) a13a8de9 2024-03-21 Julian Oes - common: trying to make sense of radius unit (#2097) 1f084f1b 2024-03-20 Marek S. Łukasiewicz - SIM_STATE specify attitude units as rad (#2095)
- mavlink in PX4/Firmware (874c975): mavlink/mavlink@a3558d6 - mavlink current upstream: mavlink/mavlink@f1d42e2 - Changes: mavlink/mavlink@a3558d6...f1d42e2 f1d42e27 2024-05-30 Hamish Willee - common - multiplier values for azimuth and eph/epv (#2120) fd4d43fa 2024-05-29 Hamish Willee - Update pymavlink 20240529 (#2119) d7a2b841 2024-05-23 Hamish Willee - common - MAV_CMD_SET_CAMERA_MODE set id (#2111) 27e222d2 2024-05-22 Hamish Willee - Remove summary table and replace with overview (#2117) 934f199b 2024-05-22 Ali Elbashir - Fix missing increment and max value typo (#2114) f31c1926 2024-05-16 Hamish Willee - Add index file to generated mavlink (#2113) 2b87f2e5 2024-05-16 Hamish Willee - Improved docs from XML generation_toolchain (#2103) 23eb98ca 2024-05-01 Thomas Frans - style: add EditorConfig and format some files (#2106) 84aaa047 2024-04-25 Hamish Willee - BATTERY_STATUS_V2.capacity_remaining and smartbattery - fix typos (#2108) 77556c7f 2024-04-25 Peter Barker - common.xml: deprecate MAV_CMD_SET_PARAMETER (#2099) 00cd0d64 2024-04-16 amy-chen-skydio - Fix ILLUMINATOR_ERROR_FLAGS (#2101) 2561b79f 2024-04-10 amy-chen-skydio - Add support for illuminators (#2047) 966503a2 2024-04-03 Peter Hall - Common: add MAV_CMD_DO_RETURN_PATH_START (#2088) 4e5d6a25 2024-03-27 Hamish Willee - DO_FENCE_ENABLE when sent as a command (#2091) fabfb1dc 2024-03-21 Peter Barker - common.xml: deprecate the _INT frames (#2092) a13a8de9 2024-03-21 Julian Oes - common: trying to make sense of radius unit (#2097) 1f084f1b 2024-03-20 Marek S. Łukasiewicz - SIM_STATE specify attitude units as rad (#2095)
- mavlink in PX4/Firmware (1e34b12): mavlink/mavlink@a3558d6 - mavlink current upstream: mavlink/mavlink@f1d42e2 - Changes: mavlink/mavlink@a3558d6...f1d42e2 f1d42e27 2024-05-30 Hamish Willee - common - multiplier values for azimuth and eph/epv (#2120) fd4d43fa 2024-05-29 Hamish Willee - Update pymavlink 20240529 (#2119) d7a2b841 2024-05-23 Hamish Willee - common - MAV_CMD_SET_CAMERA_MODE set id (#2111) 27e222d2 2024-05-22 Hamish Willee - Remove summary table and replace with overview (#2117) 934f199b 2024-05-22 Ali Elbashir - Fix missing increment and max value typo (#2114) f31c1926 2024-05-16 Hamish Willee - Add index file to generated mavlink (#2113) 2b87f2e5 2024-05-16 Hamish Willee - Improved docs from XML generation_toolchain (#2103) 23eb98ca 2024-05-01 Thomas Frans - style: add EditorConfig and format some files (#2106) 84aaa047 2024-04-25 Hamish Willee - BATTERY_STATUS_V2.capacity_remaining and smartbattery - fix typos (#2108) 77556c7f 2024-04-25 Peter Barker - common.xml: deprecate MAV_CMD_SET_PARAMETER (#2099) 00cd0d64 2024-04-16 amy-chen-skydio - Fix ILLUMINATOR_ERROR_FLAGS (#2101) 2561b79f 2024-04-10 amy-chen-skydio - Add support for illuminators (#2047) 966503a2 2024-04-03 Peter Hall - Common: add MAV_CMD_DO_RETURN_PATH_START (#2088) 4e5d6a25 2024-03-27 Hamish Willee - DO_FENCE_ENABLE when sent as a command (#2091) fabfb1dc 2024-03-21 Peter Barker - common.xml: deprecate the _INT frames (#2092) a13a8de9 2024-03-21 Julian Oes - common: trying to make sense of radius unit (#2097) 1f084f1b 2024-03-20 Marek S. Łukasiewicz - SIM_STATE specify attitude units as rad (#2095)
- mavlink in PX4/Firmware (88b462d): mavlink/mavlink@a3558d6 - mavlink current upstream: mavlink/mavlink@f1d42e2 - Changes: mavlink/mavlink@a3558d6...f1d42e2 f1d42e27 2024-05-30 Hamish Willee - common - multiplier values for azimuth and eph/epv (#2120) fd4d43fa 2024-05-29 Hamish Willee - Update pymavlink 20240529 (#2119) d7a2b841 2024-05-23 Hamish Willee - common - MAV_CMD_SET_CAMERA_MODE set id (#2111) 27e222d2 2024-05-22 Hamish Willee - Remove summary table and replace with overview (#2117) 934f199b 2024-05-22 Ali Elbashir - Fix missing increment and max value typo (#2114) f31c1926 2024-05-16 Hamish Willee - Add index file to generated mavlink (#2113) 2b87f2e5 2024-05-16 Hamish Willee - Improved docs from XML generation_toolchain (#2103) 23eb98ca 2024-05-01 Thomas Frans - style: add EditorConfig and format some files (#2106) 84aaa047 2024-04-25 Hamish Willee - BATTERY_STATUS_V2.capacity_remaining and smartbattery - fix typos (#2108) 77556c7f 2024-04-25 Peter Barker - common.xml: deprecate MAV_CMD_SET_PARAMETER (#2099) 00cd0d64 2024-04-16 amy-chen-skydio - Fix ILLUMINATOR_ERROR_FLAGS (#2101) 2561b79f 2024-04-10 amy-chen-skydio - Add support for illuminators (#2047) 966503a2 2024-04-03 Peter Hall - Common: add MAV_CMD_DO_RETURN_PATH_START (#2088) 4e5d6a25 2024-03-27 Hamish Willee - DO_FENCE_ENABLE when sent as a command (#2091) fabfb1dc 2024-03-21 Peter Barker - common.xml: deprecate the _INT frames (#2092) a13a8de9 2024-03-21 Julian Oes - common: trying to make sense of radius unit (#2097) 1f084f1b 2024-03-20 Marek S. Łukasiewicz - SIM_STATE specify attitude units as rad (#2095)
- mavlink in PX4/Firmware (667ff3f): mavlink/mavlink@a3558d6 - mavlink current upstream: mavlink/mavlink@f1d42e2 - Changes: mavlink/mavlink@a3558d6...f1d42e2 f1d42e27 2024-05-30 Hamish Willee - common - multiplier values for azimuth and eph/epv (#2120) fd4d43fa 2024-05-29 Hamish Willee - Update pymavlink 20240529 (#2119) d7a2b841 2024-05-23 Hamish Willee - common - MAV_CMD_SET_CAMERA_MODE set id (#2111) 27e222d2 2024-05-22 Hamish Willee - Remove summary table and replace with overview (#2117) 934f199b 2024-05-22 Ali Elbashir - Fix missing increment and max value typo (#2114) f31c1926 2024-05-16 Hamish Willee - Add index file to generated mavlink (#2113) 2b87f2e5 2024-05-16 Hamish Willee - Improved docs from XML generation_toolchain (#2103) 23eb98ca 2024-05-01 Thomas Frans - style: add EditorConfig and format some files (#2106) 84aaa047 2024-04-25 Hamish Willee - BATTERY_STATUS_V2.capacity_remaining and smartbattery - fix typos (#2108) 77556c7f 2024-04-25 Peter Barker - common.xml: deprecate MAV_CMD_SET_PARAMETER (#2099) 00cd0d64 2024-04-16 amy-chen-skydio - Fix ILLUMINATOR_ERROR_FLAGS (#2101) 2561b79f 2024-04-10 amy-chen-skydio - Add support for illuminators (#2047) 966503a2 2024-04-03 Peter Hall - Common: add MAV_CMD_DO_RETURN_PATH_START (#2088) 4e5d6a25 2024-03-27 Hamish Willee - DO_FENCE_ENABLE when sent as a command (#2091) fabfb1dc 2024-03-21 Peter Barker - common.xml: deprecate the _INT frames (#2092) a13a8de9 2024-03-21 Julian Oes - common: trying to make sense of radius unit (#2097) 1f084f1b 2024-03-20 Marek S. Łukasiewicz - SIM_STATE specify attitude units as rad (#2095)
- mavlink in PX4/Firmware (e3ec032): mavlink/mavlink@a3558d6 - mavlink current upstream: mavlink/mavlink@f1d42e2 - Changes: mavlink/mavlink@a3558d6...f1d42e2 f1d42e27 2024-05-30 Hamish Willee - common - multiplier values for azimuth and eph/epv (#2120) fd4d43fa 2024-05-29 Hamish Willee - Update pymavlink 20240529 (#2119) d7a2b841 2024-05-23 Hamish Willee - common - MAV_CMD_SET_CAMERA_MODE set id (#2111) 27e222d2 2024-05-22 Hamish Willee - Remove summary table and replace with overview (#2117) 934f199b 2024-05-22 Ali Elbashir - Fix missing increment and max value typo (#2114) f31c1926 2024-05-16 Hamish Willee - Add index file to generated mavlink (#2113) 2b87f2e5 2024-05-16 Hamish Willee - Improved docs from XML generation_toolchain (#2103) 23eb98ca 2024-05-01 Thomas Frans - style: add EditorConfig and format some files (#2106) 84aaa047 2024-04-25 Hamish Willee - BATTERY_STATUS_V2.capacity_remaining and smartbattery - fix typos (#2108) 77556c7f 2024-04-25 Peter Barker - common.xml: deprecate MAV_CMD_SET_PARAMETER (#2099) 00cd0d64 2024-04-16 amy-chen-skydio - Fix ILLUMINATOR_ERROR_FLAGS (#2101) 2561b79f 2024-04-10 amy-chen-skydio - Add support for illuminators (#2047) 966503a2 2024-04-03 Peter Hall - Common: add MAV_CMD_DO_RETURN_PATH_START (#2088) 4e5d6a25 2024-03-27 Hamish Willee - DO_FENCE_ENABLE when sent as a command (#2091) fabfb1dc 2024-03-21 Peter Barker - common.xml: deprecate the _INT frames (#2092) a13a8de9 2024-03-21 Julian Oes - common: trying to make sense of radius unit (#2097) 1f084f1b 2024-03-20 Marek S. Łukasiewicz - SIM_STATE specify attitude units as rad (#2095)
- mavlink in PX4/Firmware (0eb9013): mavlink/mavlink@a3558d6 - mavlink current upstream: mavlink/mavlink@f1d42e2 - Changes: mavlink/mavlink@a3558d6...f1d42e2 f1d42e27 2024-05-30 Hamish Willee - common - multiplier values for azimuth and eph/epv (#2120) fd4d43fa 2024-05-29 Hamish Willee - Update pymavlink 20240529 (#2119) d7a2b841 2024-05-23 Hamish Willee - common - MAV_CMD_SET_CAMERA_MODE set id (#2111) 27e222d2 2024-05-22 Hamish Willee - Remove summary table and replace with overview (#2117) 934f199b 2024-05-22 Ali Elbashir - Fix missing increment and max value typo (#2114) f31c1926 2024-05-16 Hamish Willee - Add index file to generated mavlink (#2113) 2b87f2e5 2024-05-16 Hamish Willee - Improved docs from XML generation_toolchain (#2103) 23eb98ca 2024-05-01 Thomas Frans - style: add EditorConfig and format some files (#2106) 84aaa047 2024-04-25 Hamish Willee - BATTERY_STATUS_V2.capacity_remaining and smartbattery - fix typos (#2108) 77556c7f 2024-04-25 Peter Barker - common.xml: deprecate MAV_CMD_SET_PARAMETER (#2099) 00cd0d64 2024-04-16 amy-chen-skydio - Fix ILLUMINATOR_ERROR_FLAGS (#2101) 2561b79f 2024-04-10 amy-chen-skydio - Add support for illuminators (#2047) 966503a2 2024-04-03 Peter Hall - Common: add MAV_CMD_DO_RETURN_PATH_START (#2088) 4e5d6a25 2024-03-27 Hamish Willee - DO_FENCE_ENABLE when sent as a command (#2091) fabfb1dc 2024-03-21 Peter Barker - common.xml: deprecate the _INT frames (#2092) a13a8de9 2024-03-21 Julian Oes - common: trying to make sense of radius unit (#2097) 1f084f1b 2024-03-20 Marek S. Łukasiewicz - SIM_STATE specify attitude units as rad (#2095)
- mavlink in PX4/Firmware (99ed07d): mavlink/mavlink@a3558d6 - mavlink current upstream: mavlink/mavlink@9e0d01d - Changes: mavlink/mavlink@a3558d6...9e0d01d 9e0d01df 2024-06-06 Hamish Willee - FUEL_STATUS message proposal (#2107) f1d42e27 2024-05-30 Hamish Willee - common - multiplier values for azimuth and eph/epv (#2120) fd4d43fa 2024-05-29 Hamish Willee - Update pymavlink 20240529 (#2119) d7a2b841 2024-05-23 Hamish Willee - common - MAV_CMD_SET_CAMERA_MODE set id (#2111) 27e222d2 2024-05-22 Hamish Willee - Remove summary table and replace with overview (#2117) 934f199b 2024-05-22 Ali Elbashir - Fix missing increment and max value typo (#2114) f31c1926 2024-05-16 Hamish Willee - Add index file to generated mavlink (#2113) 2b87f2e5 2024-05-16 Hamish Willee - Improved docs from XML generation_toolchain (#2103) 23eb98ca 2024-05-01 Thomas Frans - style: add EditorConfig and format some files (#2106) 84aaa047 2024-04-25 Hamish Willee - BATTERY_STATUS_V2.capacity_remaining and smartbattery - fix typos (#2108) 77556c7f 2024-04-25 Peter Barker - common.xml: deprecate MAV_CMD_SET_PARAMETER (#2099) 00cd0d64 2024-04-16 amy-chen-skydio - Fix ILLUMINATOR_ERROR_FLAGS (#2101) 2561b79f 2024-04-10 amy-chen-skydio - Add support for illuminators (#2047) 966503a2 2024-04-03 Peter Hall - Common: add MAV_CMD_DO_RETURN_PATH_START (#2088) 4e5d6a25 2024-03-27 Hamish Willee - DO_FENCE_ENABLE when sent as a command (#2091) fabfb1dc 2024-03-21 Peter Barker - common.xml: deprecate the _INT frames (#2092) a13a8de9 2024-03-21 Julian Oes - common: trying to make sense of radius unit (#2097) 1f084f1b 2024-03-20 Marek S. Łukasiewicz - SIM_STATE specify attitude units as rad (#2095)
- mavlink in PX4/Firmware (c6c6801): mavlink/mavlink@a3558d6 - mavlink current upstream: mavlink/mavlink@9e0d01d - Changes: mavlink/mavlink@a3558d6...9e0d01d 9e0d01df 2024-06-06 Hamish Willee - FUEL_STATUS message proposal (#2107) f1d42e27 2024-05-30 Hamish Willee - common - multiplier values for azimuth and eph/epv (#2120) fd4d43fa 2024-05-29 Hamish Willee - Update pymavlink 20240529 (#2119) d7a2b841 2024-05-23 Hamish Willee - common - MAV_CMD_SET_CAMERA_MODE set id (#2111) 27e222d2 2024-05-22 Hamish Willee - Remove summary table and replace with overview (#2117) 934f199b 2024-05-22 Ali Elbashir - Fix missing increment and max value typo (#2114) f31c1926 2024-05-16 Hamish Willee - Add index file to generated mavlink (#2113) 2b87f2e5 2024-05-16 Hamish Willee - Improved docs from XML generation_toolchain (#2103) 23eb98ca 2024-05-01 Thomas Frans - style: add EditorConfig and format some files (#2106) 84aaa047 2024-04-25 Hamish Willee - BATTERY_STATUS_V2.capacity_remaining and smartbattery - fix typos (#2108) 77556c7f 2024-04-25 Peter Barker - common.xml: deprecate MAV_CMD_SET_PARAMETER (#2099) 00cd0d64 2024-04-16 amy-chen-skydio - Fix ILLUMINATOR_ERROR_FLAGS (#2101) 2561b79f 2024-04-10 amy-chen-skydio - Add support for illuminators (#2047) 966503a2 2024-04-03 Peter Hall - Common: add MAV_CMD_DO_RETURN_PATH_START (#2088) 4e5d6a25 2024-03-27 Hamish Willee - DO_FENCE_ENABLE when sent as a command (#2091) fabfb1dc 2024-03-21 Peter Barker - common.xml: deprecate the _INT frames (#2092) a13a8de9 2024-03-21 Julian Oes - common: trying to make sense of radius unit (#2097) 1f084f1b 2024-03-20 Marek S. Łukasiewicz - SIM_STATE specify attitude units as rad (#2095)
- mavlink in PX4/Firmware (4d6f62c): mavlink/mavlink@a3558d6 - mavlink current upstream: mavlink/mavlink@9e0d01d - Changes: mavlink/mavlink@a3558d6...9e0d01d 9e0d01df 2024-06-06 Hamish Willee - FUEL_STATUS message proposal (#2107) f1d42e27 2024-05-30 Hamish Willee - common - multiplier values for azimuth and eph/epv (#2120) fd4d43fa 2024-05-29 Hamish Willee - Update pymavlink 20240529 (#2119) d7a2b841 2024-05-23 Hamish Willee - common - MAV_CMD_SET_CAMERA_MODE set id (#2111) 27e222d2 2024-05-22 Hamish Willee - Remove summary table and replace with overview (#2117) 934f199b 2024-05-22 Ali Elbashir - Fix missing increment and max value typo (#2114) f31c1926 2024-05-16 Hamish Willee - Add index file to generated mavlink (#2113) 2b87f2e5 2024-05-16 Hamish Willee - Improved docs from XML generation_toolchain (#2103) 23eb98ca 2024-05-01 Thomas Frans - style: add EditorConfig and format some files (#2106) 84aaa047 2024-04-25 Hamish Willee - BATTERY_STATUS_V2.capacity_remaining and smartbattery - fix typos (#2108) 77556c7f 2024-04-25 Peter Barker - common.xml: deprecate MAV_CMD_SET_PARAMETER (#2099) 00cd0d64 2024-04-16 amy-chen-skydio - Fix ILLUMINATOR_ERROR_FLAGS (#2101) 2561b79f 2024-04-10 amy-chen-skydio - Add support for illuminators (#2047) 966503a2 2024-04-03 Peter Hall - Common: add MAV_CMD_DO_RETURN_PATH_START (#2088) 4e5d6a25 2024-03-27 Hamish Willee - DO_FENCE_ENABLE when sent as a command (#2091) fabfb1dc 2024-03-21 Peter Barker - common.xml: deprecate the _INT frames (#2092) a13a8de9 2024-03-21 Julian Oes - common: trying to make sense of radius unit (#2097) 1f084f1b 2024-03-20 Marek S. Łukasiewicz - SIM_STATE specify attitude units as rad (#2095)
- mavlink in PX4/Firmware (758152e): mavlink/mavlink@a3558d6 - mavlink current upstream: mavlink/mavlink@9e0d01d - Changes: mavlink/mavlink@a3558d6...9e0d01d 9e0d01df 2024-06-06 Hamish Willee - FUEL_STATUS message proposal (#2107) f1d42e27 2024-05-30 Hamish Willee - common - multiplier values for azimuth and eph/epv (#2120) fd4d43fa 2024-05-29 Hamish Willee - Update pymavlink 20240529 (#2119) d7a2b841 2024-05-23 Hamish Willee - common - MAV_CMD_SET_CAMERA_MODE set id (#2111) 27e222d2 2024-05-22 Hamish Willee - Remove summary table and replace with overview (#2117) 934f199b 2024-05-22 Ali Elbashir - Fix missing increment and max value typo (#2114) f31c1926 2024-05-16 Hamish Willee - Add index file to generated mavlink (#2113) 2b87f2e5 2024-05-16 Hamish Willee - Improved docs from XML generation_toolchain (#2103) 23eb98ca 2024-05-01 Thomas Frans - style: add EditorConfig and format some files (#2106) 84aaa047 2024-04-25 Hamish Willee - BATTERY_STATUS_V2.capacity_remaining and smartbattery - fix typos (#2108) 77556c7f 2024-04-25 Peter Barker - common.xml: deprecate MAV_CMD_SET_PARAMETER (#2099) 00cd0d64 2024-04-16 amy-chen-skydio - Fix ILLUMINATOR_ERROR_FLAGS (#2101) 2561b79f 2024-04-10 amy-chen-skydio - Add support for illuminators (#2047) 966503a2 2024-04-03 Peter Hall - Common: add MAV_CMD_DO_RETURN_PATH_START (#2088) 4e5d6a25 2024-03-27 Hamish Willee - DO_FENCE_ENABLE when sent as a command (#2091) fabfb1dc 2024-03-21 Peter Barker - common.xml: deprecate the _INT frames (#2092) a13a8de9 2024-03-21 Julian Oes - common: trying to make sense of radius unit (#2097) 1f084f1b 2024-03-20 Marek S. Łukasiewicz - SIM_STATE specify attitude units as rad (#2095)
- mavlink in PX4/Firmware (7a781ca): mavlink/mavlink@a3558d6 - mavlink current upstream: mavlink/mavlink@9e0d01d - Changes: mavlink/mavlink@a3558d6...9e0d01d 9e0d01df 2024-06-06 Hamish Willee - FUEL_STATUS message proposal (#2107) f1d42e27 2024-05-30 Hamish Willee - common - multiplier values for azimuth and eph/epv (#2120) fd4d43fa 2024-05-29 Hamish Willee - Update pymavlink 20240529 (#2119) d7a2b841 2024-05-23 Hamish Willee - common - MAV_CMD_SET_CAMERA_MODE set id (#2111) 27e222d2 2024-05-22 Hamish Willee - Remove summary table and replace with overview (#2117) 934f199b 2024-05-22 Ali Elbashir - Fix missing increment and max value typo (#2114) f31c1926 2024-05-16 Hamish Willee - Add index file to generated mavlink (#2113) 2b87f2e5 2024-05-16 Hamish Willee - Improved docs from XML generation_toolchain (#2103) 23eb98ca 2024-05-01 Thomas Frans - style: add EditorConfig and format some files (#2106) 84aaa047 2024-04-25 Hamish Willee - BATTERY_STATUS_V2.capacity_remaining and smartbattery - fix typos (#2108) 77556c7f 2024-04-25 Peter Barker - common.xml: deprecate MAV_CMD_SET_PARAMETER (#2099) 00cd0d64 2024-04-16 amy-chen-skydio - Fix ILLUMINATOR_ERROR_FLAGS (#2101) 2561b79f 2024-04-10 amy-chen-skydio - Add support for illuminators (#2047) 966503a2 2024-04-03 Peter Hall - Common: add MAV_CMD_DO_RETURN_PATH_START (#2088) 4e5d6a25 2024-03-27 Hamish Willee - DO_FENCE_ENABLE when sent as a command (#2091) fabfb1dc 2024-03-21 Peter Barker - common.xml: deprecate the _INT frames (#2092) a13a8de9 2024-03-21 Julian Oes - common: trying to make sense of radius unit (#2097) 1f084f1b 2024-03-20 Marek S. Łukasiewicz - SIM_STATE specify attitude units as rad (#2095)
- mavlink in PX4/Firmware (1e03f79): mavlink/mavlink@a3558d6 - mavlink current upstream: mavlink/mavlink@9e0d01d - Changes: mavlink/mavlink@a3558d6...9e0d01d 9e0d01df 2024-06-06 Hamish Willee - FUEL_STATUS message proposal (#2107) f1d42e27 2024-05-30 Hamish Willee - common - multiplier values for azimuth and eph/epv (#2120) fd4d43fa 2024-05-29 Hamish Willee - Update pymavlink 20240529 (#2119) d7a2b841 2024-05-23 Hamish Willee - common - MAV_CMD_SET_CAMERA_MODE set id (#2111) 27e222d2 2024-05-22 Hamish Willee - Remove summary table and replace with overview (#2117) 934f199b 2024-05-22 Ali Elbashir - Fix missing increment and max value typo (#2114) f31c1926 2024-05-16 Hamish Willee - Add index file to generated mavlink (#2113) 2b87f2e5 2024-05-16 Hamish Willee - Improved docs from XML generation_toolchain (#2103) 23eb98ca 2024-05-01 Thomas Frans - style: add EditorConfig and format some files (#2106) 84aaa047 2024-04-25 Hamish Willee - BATTERY_STATUS_V2.capacity_remaining and smartbattery - fix typos (#2108) 77556c7f 2024-04-25 Peter Barker - common.xml: deprecate MAV_CMD_SET_PARAMETER (#2099) 00cd0d64 2024-04-16 amy-chen-skydio - Fix ILLUMINATOR_ERROR_FLAGS (#2101) 2561b79f 2024-04-10 amy-chen-skydio - Add support for illuminators (#2047) 966503a2 2024-04-03 Peter Hall - Common: add MAV_CMD_DO_RETURN_PATH_START (#2088) 4e5d6a25 2024-03-27 Hamish Willee - DO_FENCE_ENABLE when sent as a command (#2091) fabfb1dc 2024-03-21 Peter Barker - common.xml: deprecate the _INT frames (#2092) a13a8de9 2024-03-21 Julian Oes - common: trying to make sense of radius unit (#2097) 1f084f1b 2024-03-20 Marek S. Łukasiewicz - SIM_STATE specify attitude units as rad (#2095)
- mavlink in PX4/Firmware (75214b8): mavlink/mavlink@a3558d6 - mavlink current upstream: mavlink/mavlink@9e0d01d - Changes: mavlink/mavlink@a3558d6...9e0d01d 9e0d01df 2024-06-06 Hamish Willee - FUEL_STATUS message proposal (#2107) f1d42e27 2024-05-30 Hamish Willee - common - multiplier values for azimuth and eph/epv (#2120) fd4d43fa 2024-05-29 Hamish Willee - Update pymavlink 20240529 (#2119) d7a2b841 2024-05-23 Hamish Willee - common - MAV_CMD_SET_CAMERA_MODE set id (#2111) 27e222d2 2024-05-22 Hamish Willee - Remove summary table and replace with overview (#2117) 934f199b 2024-05-22 Ali Elbashir - Fix missing increment and max value typo (#2114) f31c1926 2024-05-16 Hamish Willee - Add index file to generated mavlink (#2113) 2b87f2e5 2024-05-16 Hamish Willee - Improved docs from XML generation_toolchain (#2103) 23eb98ca 2024-05-01 Thomas Frans - style: add EditorConfig and format some files (#2106) 84aaa047 2024-04-25 Hamish Willee - BATTERY_STATUS_V2.capacity_remaining and smartbattery - fix typos (#2108) 77556c7f 2024-04-25 Peter Barker - common.xml: deprecate MAV_CMD_SET_PARAMETER (#2099) 00cd0d64 2024-04-16 amy-chen-skydio - Fix ILLUMINATOR_ERROR_FLAGS (#2101) 2561b79f 2024-04-10 amy-chen-skydio - Add support for illuminators (#2047) 966503a2 2024-04-03 Peter Hall - Common: add MAV_CMD_DO_RETURN_PATH_START (#2088) 4e5d6a25 2024-03-27 Hamish Willee - DO_FENCE_ENABLE when sent as a command (#2091) fabfb1dc 2024-03-21 Peter Barker - common.xml: deprecate the _INT frames (#2092) a13a8de9 2024-03-21 Julian Oes - common: trying to make sense of radius unit (#2097) 1f084f1b 2024-03-20 Marek S. Łukasiewicz - SIM_STATE specify attitude units as rad (#2095)
- mavlink in PX4/Firmware (1fecb68): mavlink/mavlink@a3558d6 - mavlink current upstream: mavlink/mavlink@9e0d01d - Changes: mavlink/mavlink@a3558d6...9e0d01d 9e0d01df 2024-06-06 Hamish Willee - FUEL_STATUS message proposal (#2107) f1d42e27 2024-05-30 Hamish Willee - common - multiplier values for azimuth and eph/epv (#2120) fd4d43fa 2024-05-29 Hamish Willee - Update pymavlink 20240529 (#2119) d7a2b841 2024-05-23 Hamish Willee - common - MAV_CMD_SET_CAMERA_MODE set id (#2111) 27e222d2 2024-05-22 Hamish Willee - Remove summary table and replace with overview (#2117) 934f199b 2024-05-22 Ali Elbashir - Fix missing increment and max value typo (#2114) f31c1926 2024-05-16 Hamish Willee - Add index file to generated mavlink (#2113) 2b87f2e5 2024-05-16 Hamish Willee - Improved docs from XML generation_toolchain (#2103) 23eb98ca 2024-05-01 Thomas Frans - style: add EditorConfig and format some files (#2106) 84aaa047 2024-04-25 Hamish Willee - BATTERY_STATUS_V2.capacity_remaining and smartbattery - fix typos (#2108) 77556c7f 2024-04-25 Peter Barker - common.xml: deprecate MAV_CMD_SET_PARAMETER (#2099) 00cd0d64 2024-04-16 amy-chen-skydio - Fix ILLUMINATOR_ERROR_FLAGS (#2101) 2561b79f 2024-04-10 amy-chen-skydio - Add support for illuminators (#2047) 966503a2 2024-04-03 Peter Hall - Common: add MAV_CMD_DO_RETURN_PATH_START (#2088) 4e5d6a25 2024-03-27 Hamish Willee - DO_FENCE_ENABLE when sent as a command (#2091) fabfb1dc 2024-03-21 Peter Barker - common.xml: deprecate the _INT frames (#2092) a13a8de9 2024-03-21 Julian Oes - common: trying to make sense of radius unit (#2097) 1f084f1b 2024-03-20 Marek S. Łukasiewicz - SIM_STATE specify attitude units as rad (#2095)
- mavlink in PX4/Firmware (b2b5fbc): mavlink/mavlink@a3558d6 - mavlink current upstream: mavlink/mavlink@9e0d01d - Changes: mavlink/mavlink@a3558d6...9e0d01d 9e0d01df 2024-06-06 Hamish Willee - FUEL_STATUS message proposal (#2107) f1d42e27 2024-05-30 Hamish Willee - common - multiplier values for azimuth and eph/epv (#2120) fd4d43fa 2024-05-29 Hamish Willee - Update pymavlink 20240529 (#2119) d7a2b841 2024-05-23 Hamish Willee - common - MAV_CMD_SET_CAMERA_MODE set id (#2111) 27e222d2 2024-05-22 Hamish Willee - Remove summary table and replace with overview (#2117) 934f199b 2024-05-22 Ali Elbashir - Fix missing increment and max value typo (#2114) f31c1926 2024-05-16 Hamish Willee - Add index file to generated mavlink (#2113) 2b87f2e5 2024-05-16 Hamish Willee - Improved docs from XML generation_toolchain (#2103) 23eb98ca 2024-05-01 Thomas Frans - style: add EditorConfig and format some files (#2106) 84aaa047 2024-04-25 Hamish Willee - BATTERY_STATUS_V2.capacity_remaining and smartbattery - fix typos (#2108) 77556c7f 2024-04-25 Peter Barker - common.xml: deprecate MAV_CMD_SET_PARAMETER (#2099) 00cd0d64 2024-04-16 amy-chen-skydio - Fix ILLUMINATOR_ERROR_FLAGS (#2101) 2561b79f 2024-04-10 amy-chen-skydio - Add support for illuminators (#2047) 966503a2 2024-04-03 Peter Hall - Common: add MAV_CMD_DO_RETURN_PATH_START (#2088) 4e5d6a25 2024-03-27 Hamish Willee - DO_FENCE_ENABLE when sent as a command (#2091) fabfb1dc 2024-03-21 Peter Barker - common.xml: deprecate the _INT frames (#2092) a13a8de9 2024-03-21 Julian Oes - common: trying to make sense of radius unit (#2097) 1f084f1b 2024-03-20 Marek S. Łukasiewicz - SIM_STATE specify attitude units as rad (#2095)
- mavlink in PX4/Firmware (5670575): mavlink/mavlink@a3558d6 - mavlink current upstream: mavlink/mavlink@9e0d01d - Changes: mavlink/mavlink@a3558d6...9e0d01d 9e0d01df 2024-06-06 Hamish Willee - FUEL_STATUS message proposal (#2107) f1d42e27 2024-05-30 Hamish Willee - common - multiplier values for azimuth and eph/epv (#2120) fd4d43fa 2024-05-29 Hamish Willee - Update pymavlink 20240529 (#2119) d7a2b841 2024-05-23 Hamish Willee - common - MAV_CMD_SET_CAMERA_MODE set id (#2111) 27e222d2 2024-05-22 Hamish Willee - Remove summary table and replace with overview (#2117) 934f199b 2024-05-22 Ali Elbashir - Fix missing increment and max value typo (#2114) f31c1926 2024-05-16 Hamish Willee - Add index file to generated mavlink (#2113) 2b87f2e5 2024-05-16 Hamish Willee - Improved docs from XML generation_toolchain (#2103) 23eb98ca 2024-05-01 Thomas Frans - style: add EditorConfig and format some files (#2106) 84aaa047 2024-04-25 Hamish Willee - BATTERY_STATUS_V2.capacity_remaining and smartbattery - fix typos (#2108) 77556c7f 2024-04-25 Peter Barker - common.xml: deprecate MAV_CMD_SET_PARAMETER (#2099) 00cd0d64 2024-04-16 amy-chen-skydio - Fix ILLUMINATOR_ERROR_FLAGS (#2101) 2561b79f 2024-04-10 amy-chen-skydio - Add support for illuminators (#2047) 966503a2 2024-04-03 Peter Hall - Common: add MAV_CMD_DO_RETURN_PATH_START (#2088) 4e5d6a25 2024-03-27 Hamish Willee - DO_FENCE_ENABLE when sent as a command (#2091) fabfb1dc 2024-03-21 Peter Barker - common.xml: deprecate the _INT frames (#2092) a13a8de9 2024-03-21 Julian Oes - common: trying to make sense of radius unit (#2097) 1f084f1b 2024-03-20 Marek S. Łukasiewicz - SIM_STATE specify attitude units as rad (#2095)
- mavlink in PX4/Firmware (e2d439e): mavlink/mavlink@a3558d6 - mavlink current upstream: mavlink/mavlink@9e0d01d - Changes: mavlink/mavlink@a3558d6...9e0d01d 9e0d01df 2024-06-06 Hamish Willee - FUEL_STATUS message proposal (#2107) f1d42e27 2024-05-30 Hamish Willee - common - multiplier values for azimuth and eph/epv (#2120) fd4d43fa 2024-05-29 Hamish Willee - Update pymavlink 20240529 (#2119) d7a2b841 2024-05-23 Hamish Willee - common - MAV_CMD_SET_CAMERA_MODE set id (#2111) 27e222d2 2024-05-22 Hamish Willee - Remove summary table and replace with overview (#2117) 934f199b 2024-05-22 Ali Elbashir - Fix missing increment and max value typo (#2114) f31c1926 2024-05-16 Hamish Willee - Add index file to generated mavlink (#2113) 2b87f2e5 2024-05-16 Hamish Willee - Improved docs from XML generation_toolchain (#2103) 23eb98ca 2024-05-01 Thomas Frans - style: add EditorConfig and format some files (#2106) 84aaa047 2024-04-25 Hamish Willee - BATTERY_STATUS_V2.capacity_remaining and smartbattery - fix typos (#2108) 77556c7f 2024-04-25 Peter Barker - common.xml: deprecate MAV_CMD_SET_PARAMETER (#2099) 00cd0d64 2024-04-16 amy-chen-skydio - Fix ILLUMINATOR_ERROR_FLAGS (#2101) 2561b79f 2024-04-10 amy-chen-skydio - Add support for illuminators (#2047) 966503a2 2024-04-03 Peter Hall - Common: add MAV_CMD_DO_RETURN_PATH_START (#2088) 4e5d6a25 2024-03-27 Hamish Willee - DO_FENCE_ENABLE when sent as a command (#2091) fabfb1dc 2024-03-21 Peter Barker - common.xml: deprecate the _INT frames (#2092) a13a8de9 2024-03-21 Julian Oes - common: trying to make sense of radius unit (#2097) 1f084f1b 2024-03-20 Marek S. Łukasiewicz - SIM_STATE specify attitude units as rad (#2095)
- mavlink in PX4/Firmware (6c5e6f3): mavlink/mavlink@a3558d6 - mavlink current upstream: mavlink/mavlink@9e0d01d - Changes: mavlink/mavlink@a3558d6...9e0d01d 9e0d01df 2024-06-06 Hamish Willee - FUEL_STATUS message proposal (#2107) f1d42e27 2024-05-30 Hamish Willee - common - multiplier values for azimuth and eph/epv (#2120) fd4d43fa 2024-05-29 Hamish Willee - Update pymavlink 20240529 (#2119) d7a2b841 2024-05-23 Hamish Willee - common - MAV_CMD_SET_CAMERA_MODE set id (#2111) 27e222d2 2024-05-22 Hamish Willee - Remove summary table and replace with overview (#2117) 934f199b 2024-05-22 Ali Elbashir - Fix missing increment and max value typo (#2114) f31c1926 2024-05-16 Hamish Willee - Add index file to generated mavlink (#2113) 2b87f2e5 2024-05-16 Hamish Willee - Improved docs from XML generation_toolchain (#2103) 23eb98ca 2024-05-01 Thomas Frans - style: add EditorConfig and format some files (#2106) 84aaa047 2024-04-25 Hamish Willee - BATTERY_STATUS_V2.capacity_remaining and smartbattery - fix typos (#2108) 77556c7f 2024-04-25 Peter Barker - common.xml: deprecate MAV_CMD_SET_PARAMETER (#2099) 00cd0d64 2024-04-16 amy-chen-skydio - Fix ILLUMINATOR_ERROR_FLAGS (#2101) 2561b79f 2024-04-10 amy-chen-skydio - Add support for illuminators (#2047) 966503a2 2024-04-03 Peter Hall - Common: add MAV_CMD_DO_RETURN_PATH_START (#2088) 4e5d6a25 2024-03-27 Hamish Willee - DO_FENCE_ENABLE when sent as a command (#2091) fabfb1dc 2024-03-21 Peter Barker - common.xml: deprecate the _INT frames (#2092) a13a8de9 2024-03-21 Julian Oes - common: trying to make sense of radius unit (#2097) 1f084f1b 2024-03-20 Marek S. Łukasiewicz - SIM_STATE specify attitude units as rad (#2095)
- mavlink in PX4/Firmware (350f750): mavlink/mavlink@a3558d6 - mavlink current upstream: mavlink/mavlink@9e0d01d - Changes: mavlink/mavlink@a3558d6...9e0d01d 9e0d01df 2024-06-06 Hamish Willee - FUEL_STATUS message proposal (#2107) f1d42e27 2024-05-30 Hamish Willee - common - multiplier values for azimuth and eph/epv (#2120) fd4d43fa 2024-05-29 Hamish Willee - Update pymavlink 20240529 (#2119) d7a2b841 2024-05-23 Hamish Willee - common - MAV_CMD_SET_CAMERA_MODE set id (#2111) 27e222d2 2024-05-22 Hamish Willee - Remove summary table and replace with overview (#2117) 934f199b 2024-05-22 Ali Elbashir - Fix missing increment and max value typo (#2114) f31c1926 2024-05-16 Hamish Willee - Add index file to generated mavlink (#2113) 2b87f2e5 2024-05-16 Hamish Willee - Improved docs from XML generation_toolchain (#2103) 23eb98ca 2024-05-01 Thomas Frans - style: add EditorConfig and format some files (#2106) 84aaa047 2024-04-25 Hamish Willee - BATTERY_STATUS_V2.capacity_remaining and smartbattery - fix typos (#2108) 77556c7f 2024-04-25 Peter Barker - common.xml: deprecate MAV_CMD_SET_PARAMETER (#2099) 00cd0d64 2024-04-16 amy-chen-skydio - Fix ILLUMINATOR_ERROR_FLAGS (#2101) 2561b79f 2024-04-10 amy-chen-skydio - Add support for illuminators (#2047) 966503a2 2024-04-03 Peter Hall - Common: add MAV_CMD_DO_RETURN_PATH_START (#2088) 4e5d6a25 2024-03-27 Hamish Willee - DO_FENCE_ENABLE when sent as a command (#2091) fabfb1dc 2024-03-21 Peter Barker - common.xml: deprecate the _INT frames (#2092) a13a8de9 2024-03-21 Julian Oes - common: trying to make sense of radius unit (#2097) 1f084f1b 2024-03-20 Marek S. Łukasiewicz - SIM_STATE specify attitude units as rad (#2095)
- mavlink in PX4/Firmware (7388cd3): mavlink/mavlink@a3558d6 - mavlink current upstream: mavlink/mavlink@da3223f - Changes: mavlink/mavlink@a3558d6...da3223f da3223ff 2024-06-13 Thomas Frans - gps: add status and integrity information (#2110) 9e0d01df 2024-06-06 Hamish Willee - FUEL_STATUS message proposal (#2107) f1d42e27 2024-05-30 Hamish Willee - common - multiplier values for azimuth and eph/epv (#2120) fd4d43fa 2024-05-29 Hamish Willee - Update pymavlink 20240529 (#2119) d7a2b841 2024-05-23 Hamish Willee - common - MAV_CMD_SET_CAMERA_MODE set id (#2111) 27e222d2 2024-05-22 Hamish Willee - Remove summary table and replace with overview (#2117) 934f199b 2024-05-22 Ali Elbashir - Fix missing increment and max value typo (#2114) f31c1926 2024-05-16 Hamish Willee - Add index file to generated mavlink (#2113) 2b87f2e5 2024-05-16 Hamish Willee - Improved docs from XML generation_toolchain (#2103) 23eb98ca 2024-05-01 Thomas Frans - style: add EditorConfig and format some files (#2106) 84aaa047 2024-04-25 Hamish Willee - BATTERY_STATUS_V2.capacity_remaining and smartbattery - fix typos (#2108) 77556c7f 2024-04-25 Peter Barker - common.xml: deprecate MAV_CMD_SET_PARAMETER (#2099) 00cd0d64 2024-04-16 amy-chen-skydio - Fix ILLUMINATOR_ERROR_FLAGS (#2101) 2561b79f 2024-04-10 amy-chen-skydio - Add support for illuminators (#2047) 966503a2 2024-04-03 Peter Hall - Common: add MAV_CMD_DO_RETURN_PATH_START (#2088) 4e5d6a25 2024-03-27 Hamish Willee - DO_FENCE_ENABLE when sent as a command (#2091) fabfb1dc 2024-03-21 Peter Barker - common.xml: deprecate the _INT frames (#2092) a13a8de9 2024-03-21 Julian Oes - common: trying to make sense of radius unit (#2097) 1f084f1b 2024-03-20 Marek S. Łukasiewicz - SIM_STATE specify attitude units as rad (#2095)
- mavlink in PX4/Firmware (dbe4f15): mavlink/mavlink@a3558d6 - mavlink current upstream: mavlink/mavlink@da3223f - Changes: mavlink/mavlink@a3558d6...da3223f da3223ff 2024-06-13 Thomas Frans - gps: add status and integrity information (#2110) 9e0d01df 2024-06-06 Hamish Willee - FUEL_STATUS message proposal (#2107) f1d42e27 2024-05-30 Hamish Willee - common - multiplier values for azimuth and eph/epv (#2120) fd4d43fa 2024-05-29 Hamish Willee - Update pymavlink 20240529 (#2119) d7a2b841 2024-05-23 Hamish Willee - common - MAV_CMD_SET_CAMERA_MODE set id (#2111) 27e222d2 2024-05-22 Hamish Willee - Remove summary table and replace with overview (#2117) 934f199b 2024-05-22 Ali Elbashir - Fix missing increment and max value typo (#2114) f31c1926 2024-05-16 Hamish Willee - Add index file to generated mavlink (#2113) 2b87f2e5 2024-05-16 Hamish Willee - Improved docs from XML generation_toolchain (#2103) 23eb98ca 2024-05-01 Thomas Frans - style: add EditorConfig and format some files (#2106) 84aaa047 2024-04-25 Hamish Willee - BATTERY_STATUS_V2.capacity_remaining and smartbattery - fix typos (#2108) 77556c7f 2024-04-25 Peter Barker - common.xml: deprecate MAV_CMD_SET_PARAMETER (#2099) 00cd0d64 2024-04-16 amy-chen-skydio - Fix ILLUMINATOR_ERROR_FLAGS (#2101) 2561b79f 2024-04-10 amy-chen-skydio - Add support for illuminators (#2047) 966503a2 2024-04-03 Peter Hall - Common: add MAV_CMD_DO_RETURN_PATH_START (#2088) 4e5d6a25 2024-03-27 Hamish Willee - DO_FENCE_ENABLE when sent as a command (#2091) fabfb1dc 2024-03-21 Peter Barker - common.xml: deprecate the _INT frames (#2092) a13a8de9 2024-03-21 Julian Oes - common: trying to make sense of radius unit (#2097) 1f084f1b 2024-03-20 Marek S. Łukasiewicz - SIM_STATE specify attitude units as rad (#2095)
- mavlink in PX4/Firmware (128a66a): mavlink/mavlink@a3558d6 - mavlink current upstream: mavlink/mavlink@da3223f - Changes: mavlink/mavlink@a3558d6...da3223f da3223ff 2024-06-13 Thomas Frans - gps: add status and integrity information (#2110) 9e0d01df 2024-06-06 Hamish Willee - FUEL_STATUS message proposal (#2107) f1d42e27 2024-05-30 Hamish Willee - common - multiplier values for azimuth and eph/epv (#2120) fd4d43fa 2024-05-29 Hamish Willee - Update pymavlink 20240529 (#2119) d7a2b841 2024-05-23 Hamish Willee - common - MAV_CMD_SET_CAMERA_MODE set id (#2111) 27e222d2 2024-05-22 Hamish Willee - Remove summary table and replace with overview (#2117) 934f199b 2024-05-22 Ali Elbashir - Fix missing increment and max value typo (#2114) f31c1926 2024-05-16 Hamish Willee - Add index file to generated mavlink (#2113) 2b87f2e5 2024-05-16 Hamish Willee - Improved docs from XML generation_toolchain (#2103) 23eb98ca 2024-05-01 Thomas Frans - style: add EditorConfig and format some files (#2106) 84aaa047 2024-04-25 Hamish Willee - BATTERY_STATUS_V2.capacity_remaining and smartbattery - fix typos (#2108) 77556c7f 2024-04-25 Peter Barker - common.xml: deprecate MAV_CMD_SET_PARAMETER (#2099) 00cd0d64 2024-04-16 amy-chen-skydio - Fix ILLUMINATOR_ERROR_FLAGS (#2101) 2561b79f 2024-04-10 amy-chen-skydio - Add support for illuminators (#2047) 966503a2 2024-04-03 Peter Hall - Common: add MAV_CMD_DO_RETURN_PATH_START (#2088) 4e5d6a25 2024-03-27 Hamish Willee - DO_FENCE_ENABLE when sent as a command (#2091) fabfb1dc 2024-03-21 Peter Barker - common.xml: deprecate the _INT frames (#2092) a13a8de9 2024-03-21 Julian Oes - common: trying to make sense of radius unit (#2097) 1f084f1b 2024-03-20 Marek S. Łukasiewicz - SIM_STATE specify attitude units as rad (#2095)
- mavlink in PX4/Firmware (53563e1): mavlink/mavlink@a3558d6 - mavlink current upstream: mavlink/mavlink@da3223f - Changes: mavlink/mavlink@a3558d6...da3223f da3223ff 2024-06-13 Thomas Frans - gps: add status and integrity information (#2110) 9e0d01df 2024-06-06 Hamish Willee - FUEL_STATUS message proposal (#2107) f1d42e27 2024-05-30 Hamish Willee - common - multiplier values for azimuth and eph/epv (#2120) fd4d43fa 2024-05-29 Hamish Willee - Update pymavlink 20240529 (#2119) d7a2b841 2024-05-23 Hamish Willee - common - MAV_CMD_SET_CAMERA_MODE set id (#2111) 27e222d2 2024-05-22 Hamish Willee - Remove summary table and replace with overview (#2117) 934f199b 2024-05-22 Ali Elbashir - Fix missing increment and max value typo (#2114) f31c1926 2024-05-16 Hamish Willee - Add index file to generated mavlink (#2113) 2b87f2e5 2024-05-16 Hamish Willee - Improved docs from XML generation_toolchain (#2103) 23eb98ca 2024-05-01 Thomas Frans - style: add EditorConfig and format some files (#2106) 84aaa047 2024-04-25 Hamish Willee - BATTERY_STATUS_V2.capacity_remaining and smartbattery - fix typos (#2108) 77556c7f 2024-04-25 Peter Barker - common.xml: deprecate MAV_CMD_SET_PARAMETER (#2099) 00cd0d64 2024-04-16 amy-chen-skydio - Fix ILLUMINATOR_ERROR_FLAGS (#2101) 2561b79f 2024-04-10 amy-chen-skydio - Add support for illuminators (#2047) 966503a2 2024-04-03 Peter Hall - Common: add MAV_CMD_DO_RETURN_PATH_START (#2088) 4e5d6a25 2024-03-27 Hamish Willee - DO_FENCE_ENABLE when sent as a command (#2091) fabfb1dc 2024-03-21 Peter Barker - common.xml: deprecate the _INT frames (#2092) a13a8de9 2024-03-21 Julian Oes - common: trying to make sense of radius unit (#2097) 1f084f1b 2024-03-20 Marek S. Łukasiewicz - SIM_STATE specify attitude units as rad (#2095)
- mavlink in PX4/Firmware (033c402): mavlink/mavlink@a3558d6 - mavlink current upstream: mavlink/mavlink@da3223f - Changes: mavlink/mavlink@a3558d6...da3223f da3223ff 2024-06-13 Thomas Frans - gps: add status and integrity information (#2110) 9e0d01df 2024-06-06 Hamish Willee - FUEL_STATUS message proposal (#2107) f1d42e27 2024-05-30 Hamish Willee - common - multiplier values for azimuth and eph/epv (#2120) fd4d43fa 2024-05-29 Hamish Willee - Update pymavlink 20240529 (#2119) d7a2b841 2024-05-23 Hamish Willee - common - MAV_CMD_SET_CAMERA_MODE set id (#2111) 27e222d2 2024-05-22 Hamish Willee - Remove summary table and replace with overview (#2117) 934f199b 2024-05-22 Ali Elbashir - Fix missing increment and max value typo (#2114) f31c1926 2024-05-16 Hamish Willee - Add index file to generated mavlink (#2113) 2b87f2e5 2024-05-16 Hamish Willee - Improved docs from XML generation_toolchain (#2103) 23eb98ca 2024-05-01 Thomas Frans - style: add EditorConfig and format some files (#2106) 84aaa047 2024-04-25 Hamish Willee - BATTERY_STATUS_V2.capacity_remaining and smartbattery - fix typos (#2108) 77556c7f 2024-04-25 Peter Barker - common.xml: deprecate MAV_CMD_SET_PARAMETER (#2099) 00cd0d64 2024-04-16 amy-chen-skydio - Fix ILLUMINATOR_ERROR_FLAGS (#2101) 2561b79f 2024-04-10 amy-chen-skydio - Add support for illuminators (#2047) 966503a2 2024-04-03 Peter Hall - Common: add MAV_CMD_DO_RETURN_PATH_START (#2088) 4e5d6a25 2024-03-27 Hamish Willee - DO_FENCE_ENABLE when sent as a command (#2091) fabfb1dc 2024-03-21 Peter Barker - common.xml: deprecate the _INT frames (#2092) a13a8de9 2024-03-21 Julian Oes - common: trying to make sense of radius unit (#2097) 1f084f1b 2024-03-20 Marek S. Łukasiewicz - SIM_STATE specify attitude units as rad (#2095)
- mavlink in PX4/Firmware (6584d97): mavlink/mavlink@a3558d6 - mavlink current upstream: mavlink/mavlink@da3223f - Changes: mavlink/mavlink@a3558d6...da3223f da3223ff 2024-06-13 Thomas Frans - gps: add status and integrity information (#2110) 9e0d01df 2024-06-06 Hamish Willee - FUEL_STATUS message proposal (#2107) f1d42e27 2024-05-30 Hamish Willee - common - multiplier values for azimuth and eph/epv (#2120) fd4d43fa 2024-05-29 Hamish Willee - Update pymavlink 20240529 (#2119) d7a2b841 2024-05-23 Hamish Willee - common - MAV_CMD_SET_CAMERA_MODE set id (#2111) 27e222d2 2024-05-22 Hamish Willee - Remove summary table and replace with overview (#2117) 934f199b 2024-05-22 Ali Elbashir - Fix missing increment and max value typo (#2114) f31c1926 2024-05-16 Hamish Willee - Add index file to generated mavlink (#2113) 2b87f2e5 2024-05-16 Hamish Willee - Improved docs from XML generation_toolchain (#2103) 23eb98ca 2024-05-01 Thomas Frans - style: add EditorConfig and format some files (#2106) 84aaa047 2024-04-25 Hamish Willee - BATTERY_STATUS_V2.capacity_remaining and smartbattery - fix typos (#2108) 77556c7f 2024-04-25 Peter Barker - common.xml: deprecate MAV_CMD_SET_PARAMETER (#2099) 00cd0d64 2024-04-16 amy-chen-skydio - Fix ILLUMINATOR_ERROR_FLAGS (#2101) 2561b79f 2024-04-10 amy-chen-skydio - Add support for illuminators (#2047) 966503a2 2024-04-03 Peter Hall - Common: add MAV_CMD_DO_RETURN_PATH_START (#2088) 4e5d6a25 2024-03-27 Hamish Willee - DO_FENCE_ENABLE when sent as a command (#2091) fabfb1dc 2024-03-21 Peter Barker - common.xml: deprecate the _INT frames (#2092) a13a8de9 2024-03-21 Julian Oes - common: trying to make sense of radius unit (#2097) 1f084f1b 2024-03-20 Marek S. Łukasiewicz - SIM_STATE specify attitude units as rad (#2095)
- mavlink in PX4/Firmware (02c04da): mavlink/mavlink@a3558d6 - mavlink current upstream: mavlink/mavlink@da3223f - Changes: mavlink/mavlink@a3558d6...da3223f da3223ff 2024-06-13 Thomas Frans - gps: add status and integrity information (#2110) 9e0d01df 2024-06-06 Hamish Willee - FUEL_STATUS message proposal (#2107) f1d42e27 2024-05-30 Hamish Willee - common - multiplier values for azimuth and eph/epv (#2120) fd4d43fa 2024-05-29 Hamish Willee - Update pymavlink 20240529 (#2119) d7a2b841 2024-05-23 Hamish Willee - common - MAV_CMD_SET_CAMERA_MODE set id (#2111) 27e222d2 2024-05-22 Hamish Willee - Remove summary table and replace with overview (#2117) 934f199b 2024-05-22 Ali Elbashir - Fix missing increment and max value typo (#2114) f31c1926 2024-05-16 Hamish Willee - Add index file to generated mavlink (#2113) 2b87f2e5 2024-05-16 Hamish Willee - Improved docs from XML generation_toolchain (#2103) 23eb98ca 2024-05-01 Thomas Frans - style: add EditorConfig and format some files (#2106) 84aaa047 2024-04-25 Hamish Willee - BATTERY_STATUS_V2.capacity_remaining and smartbattery - fix typos (#2108) 77556c7f 2024-04-25 Peter Barker - common.xml: deprecate MAV_CMD_SET_PARAMETER (#2099) 00cd0d64 2024-04-16 amy-chen-skydio - Fix ILLUMINATOR_ERROR_FLAGS (#2101) 2561b79f 2024-04-10 amy-chen-skydio - Add support for illuminators (#2047) 966503a2 2024-04-03 Peter Hall - Common: add MAV_CMD_DO_RETURN_PATH_START (#2088) 4e5d6a25 2024-03-27 Hamish Willee - DO_FENCE_ENABLE when sent as a command (#2091) fabfb1dc 2024-03-21 Peter Barker - common.xml: deprecate the _INT frames (#2092) a13a8de9 2024-03-21 Julian Oes - common: trying to make sense of radius unit (#2097) 1f084f1b 2024-03-20 Marek S. Łukasiewicz - SIM_STATE specify attitude units as rad (#2095)
- mavlink in PX4/Firmware (8c5b89c): mavlink/mavlink@a3558d6 - mavlink current upstream: mavlink/mavlink@da3223f - Changes: mavlink/mavlink@a3558d6...da3223f da3223ff 2024-06-13 Thomas Frans - gps: add status and integrity information (#2110) 9e0d01df 2024-06-06 Hamish Willee - FUEL_STATUS message proposal (#2107) f1d42e27 2024-05-30 Hamish Willee - common - multiplier values for azimuth and eph/epv (#2120) fd4d43fa 2024-05-29 Hamish Willee - Update pymavlink 20240529 (#2119) d7a2b841 2024-05-23 Hamish Willee - common - MAV_CMD_SET_CAMERA_MODE set id (#2111) 27e222d2 2024-05-22 Hamish Willee - Remove summary table and replace with overview (#2117) 934f199b 2024-05-22 Ali Elbashir - Fix missing increment and max value typo (#2114) f31c1926 2024-05-16 Hamish Willee - Add index file to generated mavlink (#2113) 2b87f2e5 2024-05-16 Hamish Willee - Improved docs from XML generation_toolchain (#2103) 23eb98ca 2024-05-01 Thomas Frans - style: add EditorConfig and format some files (#2106) 84aaa047 2024-04-25 Hamish Willee - BATTERY_STATUS_V2.capacity_remaining and smartbattery - fix typos (#2108) 77556c7f 2024-04-25 Peter Barker - common.xml: deprecate MAV_CMD_SET_PARAMETER (#2099) 00cd0d64 2024-04-16 amy-chen-skydio - Fix ILLUMINATOR_ERROR_FLAGS (#2101) 2561b79f 2024-04-10 amy-chen-skydio - Add support for illuminators (#2047) 966503a2 2024-04-03 Peter Hall - Common: add MAV_CMD_DO_RETURN_PATH_START (#2088) 4e5d6a25 2024-03-27 Hamish Willee - DO_FENCE_ENABLE when sent as a command (#2091) fabfb1dc 2024-03-21 Peter Barker - common.xml: deprecate the _INT frames (#2092) a13a8de9 2024-03-21 Julian Oes - common: trying to make sense of radius unit (#2097) 1f084f1b 2024-03-20 Marek S. Łukasiewicz - SIM_STATE specify attitude units as rad (#2095)
- mavlink in PX4/Firmware (c96804d): mavlink/mavlink@a3558d6 - mavlink current upstream: mavlink/mavlink@da3223f - Changes: mavlink/mavlink@a3558d6...da3223f da3223ff 2024-06-13 Thomas Frans - gps: add status and integrity information (#2110) 9e0d01df 2024-06-06 Hamish Willee - FUEL_STATUS message proposal (#2107) f1d42e27 2024-05-30 Hamish Willee - common - multiplier values for azimuth and eph/epv (#2120) fd4d43fa 2024-05-29 Hamish Willee - Update pymavlink 20240529 (#2119) d7a2b841 2024-05-23 Hamish Willee - common - MAV_CMD_SET_CAMERA_MODE set id (#2111) 27e222d2 2024-05-22 Hamish Willee - Remove summary table and replace with overview (#2117) 934f199b 2024-05-22 Ali Elbashir - Fix missing increment and max value typo (#2114) f31c1926 2024-05-16 Hamish Willee - Add index file to generated mavlink (#2113) 2b87f2e5 2024-05-16 Hamish Willee - Improved docs from XML generation_toolchain (#2103) 23eb98ca 2024-05-01 Thomas Frans - style: add EditorConfig and format some files (#2106) 84aaa047 2024-04-25 Hamish Willee - BATTERY_STATUS_V2.capacity_remaining and smartbattery - fix typos (#2108) 77556c7f 2024-04-25 Peter Barker - common.xml: deprecate MAV_CMD_SET_PARAMETER (#2099) 00cd0d64 2024-04-16 amy-chen-skydio - Fix ILLUMINATOR_ERROR_FLAGS (#2101) 2561b79f 2024-04-10 amy-chen-skydio - Add support for illuminators (#2047) 966503a2 2024-04-03 Peter Hall - Common: add MAV_CMD_DO_RETURN_PATH_START (#2088) 4e5d6a25 2024-03-27 Hamish Willee - DO_FENCE_ENABLE when sent as a command (#2091) fabfb1dc 2024-03-21 Peter Barker - common.xml: deprecate the _INT frames (#2092) a13a8de9 2024-03-21 Julian Oes - common: trying to make sense of radius unit (#2097) 1f084f1b 2024-03-20 Marek S. Łukasiewicz - SIM_STATE specify attitude units as rad (#2095)
- mavlink in PX4/Firmware (c2e0465): mavlink/mavlink@a3558d6 - mavlink current upstream: mavlink/mavlink@da3223f - Changes: mavlink/mavlink@a3558d6...da3223f da3223ff 2024-06-13 Thomas Frans - gps: add status and integrity information (#2110) 9e0d01df 2024-06-06 Hamish Willee - FUEL_STATUS message proposal (#2107) f1d42e27 2024-05-30 Hamish Willee - common - multiplier values for azimuth and eph/epv (#2120) fd4d43fa 2024-05-29 Hamish Willee - Update pymavlink 20240529 (#2119) d7a2b841 2024-05-23 Hamish Willee - common - MAV_CMD_SET_CAMERA_MODE set id (#2111) 27e222d2 2024-05-22 Hamish Willee - Remove summary table and replace with overview (#2117) 934f199b 2024-05-22 Ali Elbashir - Fix missing increment and max value typo (#2114) f31c1926 2024-05-16 Hamish Willee - Add index file to generated mavlink (#2113) 2b87f2e5 2024-05-16 Hamish Willee - Improved docs from XML generation_toolchain (#2103) 23eb98ca 2024-05-01 Thomas Frans - style: add EditorConfig and format some files (#2106) 84aaa047 2024-04-25 Hamish Willee - BATTERY_STATUS_V2.capacity_remaining and smartbattery - fix typos (#2108) 77556c7f 2024-04-25 Peter Barker - common.xml: deprecate MAV_CMD_SET_PARAMETER (#2099) 00cd0d64 2024-04-16 amy-chen-skydio - Fix ILLUMINATOR_ERROR_FLAGS (#2101) 2561b79f 2024-04-10 amy-chen-skydio - Add support for illuminators (#2047) 966503a2 2024-04-03 Peter Hall - Common: add MAV_CMD_DO_RETURN_PATH_START (#2088) 4e5d6a25 2024-03-27 Hamish Willee - DO_FENCE_ENABLE when sent as a command (#2091) fabfb1dc 2024-03-21 Peter Barker - common.xml: deprecate the _INT frames (#2092) a13a8de9 2024-03-21 Julian Oes - common: trying to make sense of radius unit (#2097) 1f084f1b 2024-03-20 Marek S. Łukasiewicz - SIM_STATE specify attitude units as rad (#2095)
@LorenzMeier it's possible that this initialization prevents your low pass filter from working: https://github.com/PX4/Firmware/pull/2061/files#diff-90c6aed97501efd7bedd6fcdae61601bR184
The text was updated successfully, but these errors were encountered: