-
Notifications
You must be signed in to change notification settings - Fork 13.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
79ec39e
commit 6a7edac
Showing
16 changed files
with
610 additions
and
331 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
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,8 +1,6 @@ | ||
uint64 timestamp # time since system start (microseconds) | ||
|
||
float32 desired_speed # [m/s] Rover desired ground speed | ||
float32 lookahead_distance # [m] Lookahead distance of pure the pursuit controller | ||
float32 heading_error # [deg] Heading error of the pure pursuit controller | ||
float32 pid_throttle_integral # [-1, 1] Integral of the PID for the normalized throttle to control the rover speed during missions | ||
|
||
# TOPICS rover_ackermann_guidance_status |
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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
uint64 timestamp # time since system start (microseconds) | ||
|
||
float32 forward_speed_setpoint # [m/s] Desired forward speed for the rover | ||
float32 forward_speed_setpoint_normalized # [-1, 1] Desired normalized forward speed for the rover | ||
float32 steering_setpoint # [rad/s] Desired steering for the rover | ||
float32 steering_setpoint_normalized # [-1, 1] Desired normalized steering for the rover | ||
|
||
# TOPICS rover_ackermann_setpoint |
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,7 +1,9 @@ | ||
uint64 timestamp # time since system start (microseconds) | ||
|
||
float32 throttle_setpoint # [-1, 1] Normalized throttle setpoint | ||
float32 steering_setpoint # [-1, 1] Normalized steering setpoint | ||
float32 actual_speed # [m/s] Rover ground speed | ||
float32 measured_forward_speed # [m/s] Measured speed in body x direction. Forwards: positiv, Backwards: negativ | ||
float32 adjusted_forward_speed_setpoint # [m/s] Speed setpoint after applying slew rate | ||
float32 steering_setpoint_normalized # [-1, 1] Normalized steering setpoint | ||
float32 adjusted_steering_setpoint_normalized # [-1, 1] Normalized steering setpoint after applying slew rate | ||
float32 pid_throttle_integral # Integral of the PID for the closed loop speed controller | ||
|
||
# TOPICS rover_ackermann_status |
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
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
Oops, something went wrong.