uORB: Add angular accel, torque & thrust setpoints

This commit is contained in:
Julien Lecoeur
2019-10-17 12:25:06 +02:00
parent 3e4137ffe8
commit 63d5155587
5 changed files with 26 additions and 0 deletions
+3
View File
@@ -131,6 +131,7 @@ set(msg_files
vehicle_acceleration.msg
vehicle_air_data.msg
vehicle_angular_acceleration.msg
vehicle_angular_acceleration_setpoint.msg
vehicle_angular_velocity.msg
vehicle_attitude.msg
vehicle_attitude_setpoint.msg
@@ -149,6 +150,8 @@ set(msg_files
vehicle_roi.msg
vehicle_status.msg
vehicle_status_flags.msg
vehicle_thrust_setpoint.msg
vehicle_torque_setpoint.msg
vehicle_trajectory_waypoint.msg
vtol_vehicle_status.msg
wheel_encoders.msg
+8
View File
@@ -265,6 +265,14 @@ rtps:
id: 116
- msg: cellular_status
id: 117
- msg: vehicle_angular_acceleration
id: 118
- msg: vehicle_angular_acceleration_setpoint
id: 119
- msg: vehicle_torque_setpoint
id: 120
- msg: vehicle_thrust_setpoint
id: 121
########## multi topics: begin ##########
- msg: actuator_controls_0
id: 150
@@ -0,0 +1,5 @@
uint64 timestamp # time since system start (microseconds)
uint64 timestamp_sample # timestamp of the data sample on which this message is based (microseconds)
float32[3] xyz # angular acceleration about X, Y, Z body axis in rad/s^2
+5
View File
@@ -0,0 +1,5 @@
uint64 timestamp # time since system start (microseconds)
uint64 timestamp_sample # timestamp of the data sample on which this message is based (microseconds)
float32[3] xyz # thrust setpoint along X, Y, Z body axis (in N)
+5
View File
@@ -0,0 +1,5 @@
uint64 timestamp # time since system start (microseconds)
uint64 timestamp_sample # timestamp of the data sample on which this message is based (microseconds)
float32[3] xyz # torque setpoint about X, Y, Z body axis (in N.m)