-
Notifications
You must be signed in to change notification settings - Fork 136
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update message definitions Mon Dec 2 09:57:33 UTC 2024
- Loading branch information
1 parent
15a8ece
commit 149a6db
Showing
2 changed files
with
14 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,17 @@ | ||
uint64 timestamp # time since system start (microseconds) | ||
|
||
float32 measured_forward_speed # [m/s] Measured speed in body x direction. Positiv: forwards, Negativ: backwards | ||
float32 measured_lateral_speed # [m/s] Measured speed in body y direction. Positiv: right, Negativ: left | ||
float32 adjusted_yaw_rate_setpoint # [rad/s] Yaw rate setpoint output of the closed loop yaw controller | ||
float32 measured_yaw_rate # [rad/s] Measured yaw rate | ||
float32 measured_yaw # [rad] Measured yaw | ||
float32 pid_yaw_rate_integral # Integral of the PID for the closed loop yaw rate controller | ||
float32 pid_yaw_integral # Integral of the PID for the closed loop yaw controller | ||
float32 pid_forward_throttle_integral # Integral of the PID for the closed loop forward speed controller | ||
float32 pid_lateral_throttle_integral # Integral of the PID for the closed loop lateral speed controller | ||
float32 measured_forward_speed # [m/s] Measured speed in body x direction. Positiv: forwards, Negativ: backwards | ||
float32 adjusted_forward_speed_setpoint # [m/s] Speed setpoint after applying slew rate | ||
float32 measured_lateral_speed # [m/s] Measured speed in body y direction. Positiv: right, Negativ: left | ||
float32 adjusted_lateral_speed_setpoint # [m/s] Speed setpoint after applying slew rate | ||
float32 measured_yaw_rate # [rad/s] Measured yaw rate | ||
float32 clyaw_yaw_rate_setpoint # [rad/s] Yaw rate setpoint output by the closed loop yaw controller | ||
float32 adjusted_yaw_rate_setpoint # [rad/s] Yaw rate setpoint from the closed loop yaw controller | ||
float32 measured_yaw # [rad] Measured yaw | ||
float32 adjusted_yaw_setpoint # [rad] Yaw setpoint after applying slew rate | ||
float32 pid_yaw_rate_integral # Integral of the PID for the closed loop yaw rate controller | ||
float32 pid_yaw_integral # Integral of the PID for the closed loop yaw controller | ||
float32 pid_forward_throttle_integral # Integral of the PID for the closed loop forward speed controller | ||
float32 pid_lateral_throttle_integral # Integral of the PID for the closed loop lateral speed controller | ||
|
||
# TOPICS rover_mecanum_status |