TSC21
7 years ago
committed by
Beat Küng
111 changed files with 203 additions and 87 deletions
@ -1,3 +1,4 @@
@@ -1,3 +1,4 @@
|
||||
uint64 timestamp # time since system start (microseconds) |
||||
uint8 NUM_ACTUATORS_DIRECT = 16 |
||||
uint32 nvalues # number of valid values |
||||
float32[16] values # actuator values, from -1 to 1 |
||||
|
@ -1,2 +1,3 @@
@@ -1,2 +1,3 @@
|
||||
uint64 timestamp # time since system start (microseconds) |
||||
int16[12] channel_id # ADC channel IDs, negative for non-existent |
||||
float32[12] channel_value # ADC channel value in volt, valid if channel ID is positive |
||||
|
@ -1,3 +1,4 @@
@@ -1,3 +1,4 @@
|
||||
uint64 timestamp # time since system start (microseconds) |
||||
uint64 timestamp_utc # UTC timestamp |
||||
|
||||
uint32 seq # Image sequence number |
||||
|
@ -1,2 +1,3 @@
@@ -1,2 +1,3 @@
|
||||
uint64 timestamp # time since system start (microseconds) |
||||
float32 load # processor load from 0 to 1 |
||||
float32 ram_usage # RAM usage from 0 to 1 |
||||
|
@ -1,3 +1,3 @@
@@ -1,3 +1,3 @@
|
||||
uint32 timestamp_ms # in milliseconds since system start |
||||
uint64 timestamp # time since system start (microseconds) |
||||
char[10] key # max. 10 characters as key / name |
||||
float32 value # the value to send as debug output |
||||
|
@ -1,3 +1,3 @@
@@ -1,3 +1,3 @@
|
||||
uint32 timestamp_ms # in milliseconds since system start |
||||
uint64 timestamp # time since system start (microseconds) |
||||
int8 ind # index of debug variable |
||||
float32 value # the value to send as debug output |
||||
|
@ -1,6 +1,8 @@
@@ -1,6 +1,8 @@
|
||||
# This message is used to dump the raw gps communication to the log. |
||||
# Set the parameter GPS_DUMP_COMM to 1 to use this. |
||||
|
||||
uint64 timestamp # time since system start (microseconds) |
||||
|
||||
uint8 len # length of data, MSB bit set = message to the gps device, |
||||
# clear = message from the device |
||||
uint8[79] data # data to write to the log |
||||
|
@ -1,3 +1,4 @@
@@ -1,3 +1,4 @@
|
||||
uint64 timestamp # time since system start (microseconds) |
||||
uint8 len # length of data |
||||
uint8 flags # LSB: 1=fragmented |
||||
uint8[182] data # data to write to GPS device (RTCM message) |
||||
|
@ -1,3 +1,4 @@
@@ -1,3 +1,4 @@
|
||||
uint64 timestamp # time since system start (microseconds) |
||||
|
||||
uint8[50] text |
||||
uint8 severity # log level (same as in the linux kernel, starting with 0) |
||||
|
@ -1 +1,2 @@
@@ -1 +1,2 @@
|
||||
uint64 timestamp # time since system start (microseconds) |
||||
float32[3] attitude_euler_angle # Attitude/direction of the mount as euler angles in rad |
||||
|
@ -1,3 +1,5 @@
@@ -1,3 +1,5 @@
|
||||
# This message is used to notify the system about one or more parameter changes |
||||
|
||||
uint64 timestamp # time since system start (microseconds) |
||||
|
||||
uint32 instance # Instance count - constantly incrementing |
||||
|
@ -1,6 +1,8 @@
@@ -1,6 +1,8 @@
|
||||
# Global position setpoint triplet in WGS84 coordinates. |
||||
# This are the three next waypoints (or just the next two or one). |
||||
|
||||
uint64 timestamp # time since system start (microseconds) |
||||
|
||||
px4/position_setpoint previous |
||||
px4/position_setpoint current |
||||
px4/position_setpoint next |
||||
|
@ -1,4 +1,4 @@
@@ -1,4 +1,4 @@
|
||||
|
||||
uint64 timestamp # time since system start (microseconds) |
||||
uint64 error_count |
||||
uint32 pulse_width # Pulse width, timer counts |
||||
uint32 period # Period, timer counts |
||||
|
@ -1,2 +1,3 @@
@@ -1,2 +1,3 @@
|
||||
uint64 timestamp # time since system start (microseconds) |
||||
int32 return_value |
||||
uint32 sequence |
||||
|
@ -1,2 +1,3 @@
@@ -1,2 +1,3 @@
|
||||
uint64 timestamp # time since system start (microseconds) |
||||
float32 voltage_v # Servo rail voltage in volts |
||||
float32 rssi_v # RSSI pin voltage in volts |
||||
|
@ -1,2 +1,3 @@
@@ -1,2 +1,3 @@
|
||||
uint64 timestamp # time since system start (microseconds) |
||||
|
||||
float32[3] magnetometer_ga # Magnetic field in NED body frame, in Gauss |
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in new issue