-
Notifications
You must be signed in to change notification settings - Fork 13.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added return mode support, slew rates for actuators, new ackermann specific message and improved cornering slow down effect.
- Loading branch information
1 parent
053b4a4
commit e0081cf
Showing
10 changed files
with
156 additions
and
28 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,10 +1,9 @@ | ||
uint64 timestamp # time since system start (microseconds) | ||
|
||
float32 actual_speed # [m/s] Rover ground speed | ||
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 | ||
float32 crosstrack_error # [m] Shortest distance from the vehicle to the path | ||
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 | ||
float32 crosstrack_error # [m] Shortest distance from the vehicle to the path | ||
|
||
# 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,7 @@ | ||
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 | ||
|
||
# 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -42,6 +42,7 @@ px4_add_module( | |
DEPENDS | ||
RoverAckermannGuidance | ||
px4_work_queue | ||
SlewRate | ||
MODULE_CONFIG | ||
module.yaml | ||
) |
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
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