Merge pull request #1752 from PX4/log_thrust_sp

log velocity - and acceleration/thrust setpoint
This commit is contained in:
Lorenz Meier
2015-02-09 22:35:36 +01:00
4 changed files with 42 additions and 18 deletions
+7 -1
View File
@@ -1,7 +1,13 @@
# Local position in NED frame
# Local position setpoint in NED frame
uint64 timestamp # timestamp of the setpoint
float32 x # in meters NED
float32 y # in meters NED
float32 z # in meters NED
float32 yaw # in radians NED -PI..+PI
float32 vx # in meters/sec
float32 vy # in meters/sec
float32 vz # in meters/sec
float32 acc_x # in meters/(sec*sec)
float32 acc_y # in meters/(sec*sec)
float32 acc_z # in meters/(sec*sec)