mirror of
https://github.com/PX4/PX4-Autopilot.git
synced 2026-05-28 19:32:36 +08:00
feat: add 6 DoF trajectory setpoints message
* feat: add attitude to trajectory setpoints * feat: proposed new trajectory message for fully actuated vehicles * fix: moved to unversioned and changed naming scheme * feat: added space between translation and attitude control * fix: change cmakelists
This commit is contained in:
@@ -210,6 +210,7 @@ set(msg_files
|
|||||||
TelemetryStatus.msg
|
TelemetryStatus.msg
|
||||||
TiltrotorExtraControls.msg
|
TiltrotorExtraControls.msg
|
||||||
TimesyncStatus.msg
|
TimesyncStatus.msg
|
||||||
|
TrajectorySetpoint6dof.msg
|
||||||
TransponderReport.msg
|
TransponderReport.msg
|
||||||
TuneControl.msg
|
TuneControl.msg
|
||||||
UavcanParameterRequest.msg
|
UavcanParameterRequest.msg
|
||||||
|
|||||||
@@ -0,0 +1,13 @@
|
|||||||
|
# Trajectory setpoint in NED frame
|
||||||
|
# Input to position controller.
|
||||||
|
|
||||||
|
uint64 timestamp # time since system start (microseconds)
|
||||||
|
|
||||||
|
# NED local world frame
|
||||||
|
float32[3] position # in meters
|
||||||
|
float32[3] velocity # in meters/second
|
||||||
|
float32[3] acceleration # in meters/second^2
|
||||||
|
float32[3] jerk # in meters/second^3 (for logging only)
|
||||||
|
|
||||||
|
float32[4] quaternion # unit quaternion
|
||||||
|
float32[3] angular_velocity # angular velocity in radians/second
|
||||||
Reference in New Issue
Block a user