Skip to content
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

unconstrained actuators.output may cause output suddenly inverse #2119

Closed
taogashi opened this issue May 3, 2015 · 4 comments
Closed

unconstrained actuators.output may cause output suddenly inverse #2119

taogashi opened this issue May 3, 2015 · 4 comments

Comments

@taogashi
Copy link

taogashi commented May 3, 2015

I found that the rate_controller's output is unconstrained, mc_att_control_main.cpp, line 861:

_actuators.control[0] = (isfinite(_att_control(0))) ? _att_control(0) : 0.0f;
_actuators.control[1] = (isfinite(_att_control(1))) ? _att_control(1) : 0.0f;
_actuators.control[2] = (isfinite(_att_control(2))) ? _att_control(2) : 0.0f;

Later in px4io.cpp line 1174, we convert a float to int16_t:

for (unsigned i = 0; i < _max_controls; i++) {                                                                                                                       
        regs[i] = FLOAT_TO_REG(controls.control[i]);
}

and

#define FLOAT_TO_REG(_float)    SIGNED_TO_REG((int16_t)((_float) * 10000.0f))

In some extreme condition, _actuators.control will go above 3.2768, resulting an int16_t's overflow after multiply by 10000.0.
Such condition appears when a user like me to set a fairly large pid parameter, drone crashed...

@RomanBapst
Copy link
Contributor

@taogashi Thanks for reporting. Makes sense to me. @LorenzMeier Do you agree?

@kd0aij
Copy link
Contributor

kd0aij commented May 3, 2015

this looks like the root cause of the instability problems in POSCTL: high rate demand leads to overflow

@RomanBapst
Copy link
Contributor

@taogashi Could you share a log of your crash?

@LorenzMeier
Copy link
Member

Good find. @Tumbili I think we should cap the value from -1 to 1 before calling FLOAT_TO_REG() on it: https://github.com/PX4/Firmware/blob/master/src/drivers/px4io/px4io.cpp#L1175

PX4BuildBot added a commit that referenced this issue May 29, 2024
    - mavlink in PX4/Firmware (8310652): mavlink/mavlink@a3558d6
    - mavlink current upstream: mavlink/mavlink@fd4d43f
    - Changes: mavlink/mavlink@a3558d6...fd4d43f

    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)
PX4BuildBot added a commit that referenced this issue May 29, 2024
    - mavlink in PX4/Firmware (9878aca): mavlink/mavlink@a3558d6
    - mavlink current upstream: mavlink/mavlink@fd4d43f
    - Changes: mavlink/mavlink@a3558d6...fd4d43f

    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)
PX4BuildBot added a commit that referenced this issue May 30, 2024
    - mavlink in PX4/Firmware (9bd1fcd): 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)
PX4BuildBot added a commit that referenced this issue May 30, 2024
    - mavlink in PX4/Firmware (df032d6): 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)
PX4BuildBot added a commit that referenced this issue May 31, 2024
    - mavlink in PX4/Firmware (986e32f): 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)
PX4BuildBot added a commit that referenced this issue May 31, 2024
    - mavlink in PX4/Firmware (4caa5a8): 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)
PX4BuildBot added a commit that referenced this issue Jun 1, 2024
    - mavlink in PX4/Firmware (2e4f73a): 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)
PX4BuildBot added a commit that referenced this issue Jun 1, 2024
    - mavlink in PX4/Firmware (6abeb05): 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)
PX4BuildBot added a commit that referenced this issue Jun 2, 2024
    - mavlink in PX4/Firmware (3670637): 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)
PX4BuildBot added a commit that referenced this issue Jun 2, 2024
    - 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)
PX4BuildBot added a commit that referenced this issue Jun 3, 2024
    - 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)
PX4BuildBot added a commit that referenced this issue Jun 4, 2024
    - 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)
PX4BuildBot added a commit that referenced this issue Jun 4, 2024
    - 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)
PX4BuildBot added a commit that referenced this issue Jun 5, 2024
    - 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)
PX4BuildBot added a commit that referenced this issue Jun 5, 2024
    - 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)
PX4BuildBot added a commit that referenced this issue Jun 6, 2024
    - 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)
PX4BuildBot added a commit that referenced this issue Jun 6, 2024
    - 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)
PX4BuildBot added a commit that referenced this issue Jun 7, 2024
    - 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)
PX4BuildBot added a commit that referenced this issue Jun 7, 2024
    - 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)
PX4BuildBot added a commit that referenced this issue Jun 8, 2024
    - 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)
PX4BuildBot added a commit that referenced this issue Jun 8, 2024
    - 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)
PX4BuildBot added a commit that referenced this issue Jun 9, 2024
    - 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)
PX4BuildBot added a commit that referenced this issue Jun 9, 2024
    - 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)
PX4BuildBot added a commit that referenced this issue Jun 10, 2024
    - 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)
PX4BuildBot added a commit that referenced this issue Jun 10, 2024
    - 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)
PX4BuildBot added a commit that referenced this issue Jun 11, 2024
    - 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)
PX4BuildBot added a commit that referenced this issue Jun 11, 2024
    - 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)
PX4BuildBot added a commit that referenced this issue Jun 12, 2024
    - 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)
PX4BuildBot added a commit that referenced this issue Jun 12, 2024
    - 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)
PX4BuildBot added a commit that referenced this issue Jun 13, 2024
    - 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)
PX4BuildBot added a commit that referenced this issue Jun 13, 2024
    - 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)
PX4BuildBot added a commit that referenced this issue Jun 14, 2024
    - 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)
PX4BuildBot added a commit that referenced this issue Jun 14, 2024
    - 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)
PX4BuildBot added a commit that referenced this issue Jun 15, 2024
    - 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)
PX4BuildBot added a commit that referenced this issue Jun 15, 2024
    - 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)
PX4BuildBot added a commit that referenced this issue Jun 16, 2024
    - 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)
PX4BuildBot added a commit that referenced this issue Jun 16, 2024
    - 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)
PX4BuildBot added a commit that referenced this issue Jun 17, 2024
    - 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)
PX4BuildBot added a commit that referenced this issue Jun 17, 2024
    - 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)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants