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

offboard commands relaxing logic #1824

Closed
aerialhedgehog opened this issue Feb 22, 2015 · 3 comments
Closed

offboard commands relaxing logic #1824

aerialhedgehog opened this issue Feb 22, 2015 · 3 comments

Comments

@aerialhedgehog
Copy link
Contributor

When responding to offboard position commands, the multirotor accelerations are limited by MPC_TILTMAX_AIR. This lets the multirotor make impulsive velocity changes.

ref @AndreasAntener
https://www.youtube.com/watch?v=0hdEZQ2MAW8
ref @aerialhedgehog
https://www.youtube.com/watch?v=K-pBmei5Uso#t=9

@aerialhedgehog
Copy link
Contributor Author

ref @LorenzMeier
#1810 (comment)

"The commanded velocity should be min(velocity_command, velocity_pos_controller_output, max_vel_param). If done this way the commanded velocity can be used to control the system response, but if its too large it won't overshoot once it reaches the desired position."

@aerialhedgehog
Copy link
Contributor Author

here's some potential pseudo code --

if offboard position commanded:

    the_position_command = offboard_position_command

if offboard velocity commanded:

    for axis in [x,y]:
        the_velocity_command[axis] = min(
            offboard_velocity_command[axis],
            velocity_pos_controller_output[axis],
            MPC_XY_VEL_MAX,
        )
    for axis in [z]:
        the_velocity_command[axis] = min(
            offboard_velocity_command[axis],
            velocity_pos_controller_output[axis],
            MPC_Z_VEL_MAX
        )

if offboard acceleration commanded:

    for axis in [x,y,z]:
        the_acceleration_command[axis] = min(
            offboard_acceleration_command[axis],
            acceleration_pos_controller_output[axis],
        )

send (
    the_position_command
    the_velocity_command
    the_acceleration_command
)

@aerialhedgehog
Copy link
Contributor Author

an alternative could be to clamp the magnitude of velocity_pos_controller_output with the magnitude of offboard_velocity_command



if offboard_position_command:

    the_position_command = offboard_position_command

if offboard_velocity_command:

    scale_mag = magnitude(offboard_velocity_command) / magnitude(velocity_pos_controller_output)

    if scale_mag < 1:
        the_velocity_command = velocity_pos_controller_output * scale_mag
    else:
        the_velocity_command = velocity_pos_controller_output

if offboard_acceleration_command:

    scale_mag = magnitude(offboard_acceleration_command) / magnitude(acceleration_pos_controller_output)

    if scale_mag < 1:
        the_acceleration_command = acceleration_pos_controller_output * scale_mag
    else:
        the_acceleration_command = acceleration_pos_controller_output

send (
    the_position_command
    the_velocity_command
    the_acceleration_command
)

@mhkabir mhkabir closed this as completed Apr 3, 2017
PX4BuildBot added a commit that referenced this issue Mar 24, 2022
    - mavlink in PX4/Firmware (e131596): mavlink/mavlink@b568a60
    - mavlink current upstream: mavlink/mavlink@20626df
    - Changes: mavlink/mavlink@b568a60...20626df

    20626dfa 2022-03-24 Hamish Willee - AVSSUAS.xml - remove empty whitespace at end of enum names
d5b9709e 2022-03-24 Peter Barker - common.xml: remove wip from AIS_VESSEL (#1817)
ee1bf9de 2022-03-24 Hamish Willee - MESSAGE_INTERVAL can be got using MAV_CMD_GET_MESSAGE_INTERVAL or MAV_CMD_REQUEST_MESSAGE (#1822)
087c1167 2022-03-24 Peter Barker - AVSUAS: correct MODE_M300_FORCE_AUTO_LANDING enum entry (#1824)
3d9594ef 2022-03-23 muexxl - add enums for mavlink ftp service (#1801)
d7a20cc3 2022-03-17 Hamish Willee - VTOL - define MAV_TYPE for belly-sitting non tiltrotor (#1808)
1fd97fb9 2022-03-17 Julian Oes - common: remove option for relative speed change (#1812)
8197285e 2022-03-16 Amilcar Lucas - Improve example documentation (#1816)
485f7d05 2022-03-14 Hamish Willee - Param protocol bits: revert float, move c_style (#1814)
1942c71e 2022-03-03 Hamish Willee - Tell git to ignore the doc/messages folder (#1809)
c38f6660 2022-03-03 Hamish Willee - Rename and document parameter encoding protocol bits. (#1799)
5186324e 2022-03-03 Julian Oes - camera/component information: URI zero termination (#1807)
PX4BuildBot added a commit that referenced this issue Mar 25, 2022
    - mavlink in PX4/Firmware (68e4deb): mavlink/mavlink@b568a60
    - mavlink current upstream: mavlink/mavlink@20626df
    - Changes: mavlink/mavlink@b568a60...20626df

    20626dfa 2022-03-24 Hamish Willee - AVSSUAS.xml - remove empty whitespace at end of enum names
d5b9709e 2022-03-24 Peter Barker - common.xml: remove wip from AIS_VESSEL (#1817)
ee1bf9de 2022-03-24 Hamish Willee - MESSAGE_INTERVAL can be got using MAV_CMD_GET_MESSAGE_INTERVAL or MAV_CMD_REQUEST_MESSAGE (#1822)
087c1167 2022-03-24 Peter Barker - AVSUAS: correct MODE_M300_FORCE_AUTO_LANDING enum entry (#1824)
3d9594ef 2022-03-23 muexxl - add enums for mavlink ftp service (#1801)
d7a20cc3 2022-03-17 Hamish Willee - VTOL - define MAV_TYPE for belly-sitting non tiltrotor (#1808)
1fd97fb9 2022-03-17 Julian Oes - common: remove option for relative speed change (#1812)
8197285e 2022-03-16 Amilcar Lucas - Improve example documentation (#1816)
485f7d05 2022-03-14 Hamish Willee - Param protocol bits: revert float, move c_style (#1814)
1942c71e 2022-03-03 Hamish Willee - Tell git to ignore the doc/messages folder (#1809)
c38f6660 2022-03-03 Hamish Willee - Rename and document parameter encoding protocol bits. (#1799)
5186324e 2022-03-03 Julian Oes - camera/component information: URI zero termination (#1807)
PX4BuildBot added a commit that referenced this issue Mar 27, 2022
    - mavlink in PX4/Firmware (284b4ed): mavlink/mavlink@b568a60
    - mavlink current upstream: mavlink/mavlink@20626df
    - Changes: mavlink/mavlink@b568a60...20626df

    20626dfa 2022-03-24 Hamish Willee - AVSSUAS.xml - remove empty whitespace at end of enum names
d5b9709e 2022-03-24 Peter Barker - common.xml: remove wip from AIS_VESSEL (#1817)
ee1bf9de 2022-03-24 Hamish Willee - MESSAGE_INTERVAL can be got using MAV_CMD_GET_MESSAGE_INTERVAL or MAV_CMD_REQUEST_MESSAGE (#1822)
087c1167 2022-03-24 Peter Barker - AVSUAS: correct MODE_M300_FORCE_AUTO_LANDING enum entry (#1824)
3d9594ef 2022-03-23 muexxl - add enums for mavlink ftp service (#1801)
d7a20cc3 2022-03-17 Hamish Willee - VTOL - define MAV_TYPE for belly-sitting non tiltrotor (#1808)
1fd97fb9 2022-03-17 Julian Oes - common: remove option for relative speed change (#1812)
8197285e 2022-03-16 Amilcar Lucas - Improve example documentation (#1816)
485f7d05 2022-03-14 Hamish Willee - Param protocol bits: revert float, move c_style (#1814)
1942c71e 2022-03-03 Hamish Willee - Tell git to ignore the doc/messages folder (#1809)
c38f6660 2022-03-03 Hamish Willee - Rename and document parameter encoding protocol bits. (#1799)
5186324e 2022-03-03 Julian Oes - camera/component information: URI zero termination (#1807)
PX4BuildBot added a commit that referenced this issue Mar 28, 2022
    - mavlink in PX4/Firmware (c00ac73): mavlink/mavlink@b568a60
    - mavlink current upstream: mavlink/mavlink@20626df
    - Changes: mavlink/mavlink@b568a60...20626df

    20626dfa 2022-03-24 Hamish Willee - AVSSUAS.xml - remove empty whitespace at end of enum names
d5b9709e 2022-03-24 Peter Barker - common.xml: remove wip from AIS_VESSEL (#1817)
ee1bf9de 2022-03-24 Hamish Willee - MESSAGE_INTERVAL can be got using MAV_CMD_GET_MESSAGE_INTERVAL or MAV_CMD_REQUEST_MESSAGE (#1822)
087c1167 2022-03-24 Peter Barker - AVSUAS: correct MODE_M300_FORCE_AUTO_LANDING enum entry (#1824)
3d9594ef 2022-03-23 muexxl - add enums for mavlink ftp service (#1801)
d7a20cc3 2022-03-17 Hamish Willee - VTOL - define MAV_TYPE for belly-sitting non tiltrotor (#1808)
1fd97fb9 2022-03-17 Julian Oes - common: remove option for relative speed change (#1812)
8197285e 2022-03-16 Amilcar Lucas - Improve example documentation (#1816)
485f7d05 2022-03-14 Hamish Willee - Param protocol bits: revert float, move c_style (#1814)
1942c71e 2022-03-03 Hamish Willee - Tell git to ignore the doc/messages folder (#1809)
c38f6660 2022-03-03 Hamish Willee - Rename and document parameter encoding protocol bits. (#1799)
5186324e 2022-03-03 Julian Oes - camera/component information: URI zero termination (#1807)
PX4BuildBot added a commit that referenced this issue Mar 29, 2022
    - mavlink in PX4/Firmware (c024f49): mavlink/mavlink@b568a60
    - mavlink current upstream: mavlink/mavlink@20626df
    - Changes: mavlink/mavlink@b568a60...20626df

    20626dfa 2022-03-24 Hamish Willee - AVSSUAS.xml - remove empty whitespace at end of enum names
d5b9709e 2022-03-24 Peter Barker - common.xml: remove wip from AIS_VESSEL (#1817)
ee1bf9de 2022-03-24 Hamish Willee - MESSAGE_INTERVAL can be got using MAV_CMD_GET_MESSAGE_INTERVAL or MAV_CMD_REQUEST_MESSAGE (#1822)
087c1167 2022-03-24 Peter Barker - AVSUAS: correct MODE_M300_FORCE_AUTO_LANDING enum entry (#1824)
3d9594ef 2022-03-23 muexxl - add enums for mavlink ftp service (#1801)
d7a20cc3 2022-03-17 Hamish Willee - VTOL - define MAV_TYPE for belly-sitting non tiltrotor (#1808)
1fd97fb9 2022-03-17 Julian Oes - common: remove option for relative speed change (#1812)
8197285e 2022-03-16 Amilcar Lucas - Improve example documentation (#1816)
485f7d05 2022-03-14 Hamish Willee - Param protocol bits: revert float, move c_style (#1814)
1942c71e 2022-03-03 Hamish Willee - Tell git to ignore the doc/messages folder (#1809)
c38f6660 2022-03-03 Hamish Willee - Rename and document parameter encoding protocol bits. (#1799)
5186324e 2022-03-03 Julian Oes - camera/component information: URI zero termination (#1807)
PX4BuildBot added a commit that referenced this issue Mar 30, 2022
    - mavlink in PX4/Firmware (c8b63e0): mavlink/mavlink@b568a60
    - mavlink current upstream: mavlink/mavlink@20626df
    - Changes: mavlink/mavlink@b568a60...20626df

    20626dfa 2022-03-24 Hamish Willee - AVSSUAS.xml - remove empty whitespace at end of enum names
d5b9709e 2022-03-24 Peter Barker - common.xml: remove wip from AIS_VESSEL (#1817)
ee1bf9de 2022-03-24 Hamish Willee - MESSAGE_INTERVAL can be got using MAV_CMD_GET_MESSAGE_INTERVAL or MAV_CMD_REQUEST_MESSAGE (#1822)
087c1167 2022-03-24 Peter Barker - AVSUAS: correct MODE_M300_FORCE_AUTO_LANDING enum entry (#1824)
3d9594ef 2022-03-23 muexxl - add enums for mavlink ftp service (#1801)
d7a20cc3 2022-03-17 Hamish Willee - VTOL - define MAV_TYPE for belly-sitting non tiltrotor (#1808)
1fd97fb9 2022-03-17 Julian Oes - common: remove option for relative speed change (#1812)
8197285e 2022-03-16 Amilcar Lucas - Improve example documentation (#1816)
485f7d05 2022-03-14 Hamish Willee - Param protocol bits: revert float, move c_style (#1814)
1942c71e 2022-03-03 Hamish Willee - Tell git to ignore the doc/messages folder (#1809)
c38f6660 2022-03-03 Hamish Willee - Rename and document parameter encoding protocol bits. (#1799)
5186324e 2022-03-03 Julian Oes - camera/component information: URI zero termination (#1807)
PX4BuildBot added a commit that referenced this issue Mar 30, 2022
    - mavlink in PX4/Firmware (3d63b52): mavlink/mavlink@b568a60
    - mavlink current upstream: mavlink/mavlink@20626df
    - Changes: mavlink/mavlink@b568a60...20626df

    20626dfa 2022-03-24 Hamish Willee - AVSSUAS.xml - remove empty whitespace at end of enum names
d5b9709e 2022-03-24 Peter Barker - common.xml: remove wip from AIS_VESSEL (#1817)
ee1bf9de 2022-03-24 Hamish Willee - MESSAGE_INTERVAL can be got using MAV_CMD_GET_MESSAGE_INTERVAL or MAV_CMD_REQUEST_MESSAGE (#1822)
087c1167 2022-03-24 Peter Barker - AVSUAS: correct MODE_M300_FORCE_AUTO_LANDING enum entry (#1824)
3d9594ef 2022-03-23 muexxl - add enums for mavlink ftp service (#1801)
d7a20cc3 2022-03-17 Hamish Willee - VTOL - define MAV_TYPE for belly-sitting non tiltrotor (#1808)
1fd97fb9 2022-03-17 Julian Oes - common: remove option for relative speed change (#1812)
8197285e 2022-03-16 Amilcar Lucas - Improve example documentation (#1816)
485f7d05 2022-03-14 Hamish Willee - Param protocol bits: revert float, move c_style (#1814)
1942c71e 2022-03-03 Hamish Willee - Tell git to ignore the doc/messages folder (#1809)
c38f6660 2022-03-03 Hamish Willee - Rename and document parameter encoding protocol bits. (#1799)
5186324e 2022-03-03 Julian Oes - camera/component information: URI zero termination (#1807)
PX4BuildBot added a commit that referenced this issue Mar 31, 2022
    - mavlink in PX4/Firmware (b4e7226): mavlink/mavlink@b568a60
    - mavlink current upstream: mavlink/mavlink@20626df
    - Changes: mavlink/mavlink@b568a60...20626df

    20626dfa 2022-03-24 Hamish Willee - AVSSUAS.xml - remove empty whitespace at end of enum names
d5b9709e 2022-03-24 Peter Barker - common.xml: remove wip from AIS_VESSEL (#1817)
ee1bf9de 2022-03-24 Hamish Willee - MESSAGE_INTERVAL can be got using MAV_CMD_GET_MESSAGE_INTERVAL or MAV_CMD_REQUEST_MESSAGE (#1822)
087c1167 2022-03-24 Peter Barker - AVSUAS: correct MODE_M300_FORCE_AUTO_LANDING enum entry (#1824)
3d9594ef 2022-03-23 muexxl - add enums for mavlink ftp service (#1801)
d7a20cc3 2022-03-17 Hamish Willee - VTOL - define MAV_TYPE for belly-sitting non tiltrotor (#1808)
1fd97fb9 2022-03-17 Julian Oes - common: remove option for relative speed change (#1812)
8197285e 2022-03-16 Amilcar Lucas - Improve example documentation (#1816)
485f7d05 2022-03-14 Hamish Willee - Param protocol bits: revert float, move c_style (#1814)
1942c71e 2022-03-03 Hamish Willee - Tell git to ignore the doc/messages folder (#1809)
c38f6660 2022-03-03 Hamish Willee - Rename and document parameter encoding protocol bits. (#1799)
5186324e 2022-03-03 Julian Oes - camera/component information: URI zero termination (#1807)
PX4BuildBot added a commit that referenced this issue Mar 31, 2022
    - mavlink in PX4/Firmware (ec2d5be): mavlink/mavlink@b568a60
    - mavlink current upstream: mavlink/mavlink@20626df
    - Changes: mavlink/mavlink@b568a60...20626df

    20626dfa 2022-03-24 Hamish Willee - AVSSUAS.xml - remove empty whitespace at end of enum names
d5b9709e 2022-03-24 Peter Barker - common.xml: remove wip from AIS_VESSEL (#1817)
ee1bf9de 2022-03-24 Hamish Willee - MESSAGE_INTERVAL can be got using MAV_CMD_GET_MESSAGE_INTERVAL or MAV_CMD_REQUEST_MESSAGE (#1822)
087c1167 2022-03-24 Peter Barker - AVSUAS: correct MODE_M300_FORCE_AUTO_LANDING enum entry (#1824)
3d9594ef 2022-03-23 muexxl - add enums for mavlink ftp service (#1801)
d7a20cc3 2022-03-17 Hamish Willee - VTOL - define MAV_TYPE for belly-sitting non tiltrotor (#1808)
1fd97fb9 2022-03-17 Julian Oes - common: remove option for relative speed change (#1812)
8197285e 2022-03-16 Amilcar Lucas - Improve example documentation (#1816)
485f7d05 2022-03-14 Hamish Willee - Param protocol bits: revert float, move c_style (#1814)
1942c71e 2022-03-03 Hamish Willee - Tell git to ignore the doc/messages folder (#1809)
c38f6660 2022-03-03 Hamish Willee - Rename and document parameter encoding protocol bits. (#1799)
5186324e 2022-03-03 Julian Oes - camera/component information: URI zero termination (#1807)
PX4BuildBot added a commit that referenced this issue Apr 1, 2022
    - mavlink in PX4/Firmware (80bb30b): mavlink/mavlink@b568a60
    - mavlink current upstream: mavlink/mavlink@20626df
    - Changes: mavlink/mavlink@b568a60...20626df

    20626dfa 2022-03-24 Hamish Willee - AVSSUAS.xml - remove empty whitespace at end of enum names
d5b9709e 2022-03-24 Peter Barker - common.xml: remove wip from AIS_VESSEL (#1817)
ee1bf9de 2022-03-24 Hamish Willee - MESSAGE_INTERVAL can be got using MAV_CMD_GET_MESSAGE_INTERVAL or MAV_CMD_REQUEST_MESSAGE (#1822)
087c1167 2022-03-24 Peter Barker - AVSUAS: correct MODE_M300_FORCE_AUTO_LANDING enum entry (#1824)
3d9594ef 2022-03-23 muexxl - add enums for mavlink ftp service (#1801)
d7a20cc3 2022-03-17 Hamish Willee - VTOL - define MAV_TYPE for belly-sitting non tiltrotor (#1808)
1fd97fb9 2022-03-17 Julian Oes - common: remove option for relative speed change (#1812)
8197285e 2022-03-16 Amilcar Lucas - Improve example documentation (#1816)
485f7d05 2022-03-14 Hamish Willee - Param protocol bits: revert float, move c_style (#1814)
1942c71e 2022-03-03 Hamish Willee - Tell git to ignore the doc/messages folder (#1809)
c38f6660 2022-03-03 Hamish Willee - Rename and document parameter encoding protocol bits. (#1799)
5186324e 2022-03-03 Julian Oes - camera/component information: URI zero termination (#1807)
PX4BuildBot added a commit that referenced this issue Apr 2, 2022
    - mavlink in PX4/Firmware (14c127a): mavlink/mavlink@b568a60
    - mavlink current upstream: mavlink/mavlink@20626df
    - Changes: mavlink/mavlink@b568a60...20626df

    20626dfa 2022-03-24 Hamish Willee - AVSSUAS.xml - remove empty whitespace at end of enum names
d5b9709e 2022-03-24 Peter Barker - common.xml: remove wip from AIS_VESSEL (#1817)
ee1bf9de 2022-03-24 Hamish Willee - MESSAGE_INTERVAL can be got using MAV_CMD_GET_MESSAGE_INTERVAL or MAV_CMD_REQUEST_MESSAGE (#1822)
087c1167 2022-03-24 Peter Barker - AVSUAS: correct MODE_M300_FORCE_AUTO_LANDING enum entry (#1824)
3d9594ef 2022-03-23 muexxl - add enums for mavlink ftp service (#1801)
d7a20cc3 2022-03-17 Hamish Willee - VTOL - define MAV_TYPE for belly-sitting non tiltrotor (#1808)
1fd97fb9 2022-03-17 Julian Oes - common: remove option for relative speed change (#1812)
8197285e 2022-03-16 Amilcar Lucas - Improve example documentation (#1816)
485f7d05 2022-03-14 Hamish Willee - Param protocol bits: revert float, move c_style (#1814)
1942c71e 2022-03-03 Hamish Willee - Tell git to ignore the doc/messages folder (#1809)
c38f6660 2022-03-03 Hamish Willee - Rename and document parameter encoding protocol bits. (#1799)
5186324e 2022-03-03 Julian Oes - camera/component information: URI zero termination (#1807)
PX4BuildBot added a commit that referenced this issue Apr 4, 2022
    - mavlink in PX4/Firmware (17ad855): mavlink/mavlink@b568a60
    - mavlink current upstream: mavlink/mavlink@20626df
    - Changes: mavlink/mavlink@b568a60...20626df

    20626dfa 2022-03-24 Hamish Willee - AVSSUAS.xml - remove empty whitespace at end of enum names
d5b9709e 2022-03-24 Peter Barker - common.xml: remove wip from AIS_VESSEL (#1817)
ee1bf9de 2022-03-24 Hamish Willee - MESSAGE_INTERVAL can be got using MAV_CMD_GET_MESSAGE_INTERVAL or MAV_CMD_REQUEST_MESSAGE (#1822)
087c1167 2022-03-24 Peter Barker - AVSUAS: correct MODE_M300_FORCE_AUTO_LANDING enum entry (#1824)
3d9594ef 2022-03-23 muexxl - add enums for mavlink ftp service (#1801)
d7a20cc3 2022-03-17 Hamish Willee - VTOL - define MAV_TYPE for belly-sitting non tiltrotor (#1808)
1fd97fb9 2022-03-17 Julian Oes - common: remove option for relative speed change (#1812)
8197285e 2022-03-16 Amilcar Lucas - Improve example documentation (#1816)
485f7d05 2022-03-14 Hamish Willee - Param protocol bits: revert float, move c_style (#1814)
1942c71e 2022-03-03 Hamish Willee - Tell git to ignore the doc/messages folder (#1809)
c38f6660 2022-03-03 Hamish Willee - Rename and document parameter encoding protocol bits. (#1799)
5186324e 2022-03-03 Julian Oes - camera/component information: URI zero termination (#1807)
PX4BuildBot added a commit that referenced this issue Apr 5, 2022
    - mavlink in PX4/Firmware (54e0755): mavlink/mavlink@b568a60
    - mavlink current upstream: mavlink/mavlink@20626df
    - Changes: mavlink/mavlink@b568a60...20626df

    20626dfa 2022-03-24 Hamish Willee - AVSSUAS.xml - remove empty whitespace at end of enum names
d5b9709e 2022-03-24 Peter Barker - common.xml: remove wip from AIS_VESSEL (#1817)
ee1bf9de 2022-03-24 Hamish Willee - MESSAGE_INTERVAL can be got using MAV_CMD_GET_MESSAGE_INTERVAL or MAV_CMD_REQUEST_MESSAGE (#1822)
087c1167 2022-03-24 Peter Barker - AVSUAS: correct MODE_M300_FORCE_AUTO_LANDING enum entry (#1824)
3d9594ef 2022-03-23 muexxl - add enums for mavlink ftp service (#1801)
d7a20cc3 2022-03-17 Hamish Willee - VTOL - define MAV_TYPE for belly-sitting non tiltrotor (#1808)
1fd97fb9 2022-03-17 Julian Oes - common: remove option for relative speed change (#1812)
8197285e 2022-03-16 Amilcar Lucas - Improve example documentation (#1816)
485f7d05 2022-03-14 Hamish Willee - Param protocol bits: revert float, move c_style (#1814)
1942c71e 2022-03-03 Hamish Willee - Tell git to ignore the doc/messages folder (#1809)
c38f6660 2022-03-03 Hamish Willee - Rename and document parameter encoding protocol bits. (#1799)
5186324e 2022-03-03 Julian Oes - camera/component information: URI zero termination (#1807)
PX4BuildBot added a commit that referenced this issue Apr 5, 2022
    - mavlink in PX4/Firmware (0384400): mavlink/mavlink@b568a60
    - mavlink current upstream: mavlink/mavlink@20626df
    - Changes: mavlink/mavlink@b568a60...20626df

    20626dfa 2022-03-24 Hamish Willee - AVSSUAS.xml - remove empty whitespace at end of enum names
d5b9709e 2022-03-24 Peter Barker - common.xml: remove wip from AIS_VESSEL (#1817)
ee1bf9de 2022-03-24 Hamish Willee - MESSAGE_INTERVAL can be got using MAV_CMD_GET_MESSAGE_INTERVAL or MAV_CMD_REQUEST_MESSAGE (#1822)
087c1167 2022-03-24 Peter Barker - AVSUAS: correct MODE_M300_FORCE_AUTO_LANDING enum entry (#1824)
3d9594ef 2022-03-23 muexxl - add enums for mavlink ftp service (#1801)
d7a20cc3 2022-03-17 Hamish Willee - VTOL - define MAV_TYPE for belly-sitting non tiltrotor (#1808)
1fd97fb9 2022-03-17 Julian Oes - common: remove option for relative speed change (#1812)
8197285e 2022-03-16 Amilcar Lucas - Improve example documentation (#1816)
485f7d05 2022-03-14 Hamish Willee - Param protocol bits: revert float, move c_style (#1814)
1942c71e 2022-03-03 Hamish Willee - Tell git to ignore the doc/messages folder (#1809)
c38f6660 2022-03-03 Hamish Willee - Rename and document parameter encoding protocol bits. (#1799)
5186324e 2022-03-03 Julian Oes - camera/component information: URI zero termination (#1807)
PX4BuildBot added a commit that referenced this issue Apr 6, 2022
    - mavlink in PX4/Firmware (8f7a69f): mavlink/mavlink@b568a60
    - mavlink current upstream: mavlink/mavlink@39375a2
    - Changes: mavlink/mavlink@b568a60...39375a2

    39375a29 2022-04-06 Hamish Willee - MAV_TYPE_VTOL _DUOROTOR and _QUADROTOR renamed to new format (#1818)
20626dfa 2022-03-24 Hamish Willee - AVSSUAS.xml - remove empty whitespace at end of enum names
d5b9709e 2022-03-24 Peter Barker - common.xml: remove wip from AIS_VESSEL (#1817)
ee1bf9de 2022-03-24 Hamish Willee - MESSAGE_INTERVAL can be got using MAV_CMD_GET_MESSAGE_INTERVAL or MAV_CMD_REQUEST_MESSAGE (#1822)
087c1167 2022-03-24 Peter Barker - AVSUAS: correct MODE_M300_FORCE_AUTO_LANDING enum entry (#1824)
3d9594ef 2022-03-23 muexxl - add enums for mavlink ftp service (#1801)
d7a20cc3 2022-03-17 Hamish Willee - VTOL - define MAV_TYPE for belly-sitting non tiltrotor (#1808)
1fd97fb9 2022-03-17 Julian Oes - common: remove option for relative speed change (#1812)
8197285e 2022-03-16 Amilcar Lucas - Improve example documentation (#1816)
485f7d05 2022-03-14 Hamish Willee - Param protocol bits: revert float, move c_style (#1814)
1942c71e 2022-03-03 Hamish Willee - Tell git to ignore the doc/messages folder (#1809)
c38f6660 2022-03-03 Hamish Willee - Rename and document parameter encoding protocol bits. (#1799)
5186324e 2022-03-03 Julian Oes - camera/component information: URI zero termination (#1807)
PX4BuildBot added a commit that referenced this issue Apr 7, 2022
    - mavlink in PX4/Firmware (094f4db): mavlink/mavlink@b568a60
    - mavlink current upstream: mavlink/mavlink@0133e5d
    - Changes: mavlink/mavlink@b568a60...0133e5d

    0133e5db 2022-04-06 Søren Friis - Update OpenDroneID messages to be compliant with protocol v2 (#1827)
39375a29 2022-04-06 Hamish Willee - MAV_TYPE_VTOL _DUOROTOR and _QUADROTOR renamed to new format (#1818)
20626dfa 2022-03-24 Hamish Willee - AVSSUAS.xml - remove empty whitespace at end of enum names
d5b9709e 2022-03-24 Peter Barker - common.xml: remove wip from AIS_VESSEL (#1817)
ee1bf9de 2022-03-24 Hamish Willee - MESSAGE_INTERVAL can be got using MAV_CMD_GET_MESSAGE_INTERVAL or MAV_CMD_REQUEST_MESSAGE (#1822)
087c1167 2022-03-24 Peter Barker - AVSUAS: correct MODE_M300_FORCE_AUTO_LANDING enum entry (#1824)
3d9594ef 2022-03-23 muexxl - add enums for mavlink ftp service (#1801)
d7a20cc3 2022-03-17 Hamish Willee - VTOL - define MAV_TYPE for belly-sitting non tiltrotor (#1808)
1fd97fb9 2022-03-17 Julian Oes - common: remove option for relative speed change (#1812)
8197285e 2022-03-16 Amilcar Lucas - Improve example documentation (#1816)
485f7d05 2022-03-14 Hamish Willee - Param protocol bits: revert float, move c_style (#1814)
1942c71e 2022-03-03 Hamish Willee - Tell git to ignore the doc/messages folder (#1809)
c38f6660 2022-03-03 Hamish Willee - Rename and document parameter encoding protocol bits. (#1799)
5186324e 2022-03-03 Julian Oes - camera/component information: URI zero termination (#1807)
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

2 participants