forked from PX4/PX4-Autopilot
-
Notifications
You must be signed in to change notification settings - Fork 0
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
315f29e
commit 6cbe6c0
Showing
13 changed files
with
535 additions
and
321 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,11 +1,6 @@ | ||
uint64 timestamp # time since system start (microseconds) | ||
|
||
float32 desired_forward_speed # [m/s] Desired forward speed for the rover | ||
float32 desired_lateral_speed # [m/s] Desired forward speed for the rover | ||
float32 lookahead_distance # [m] Lookahead distance of pure the pursuit controller | ||
float32 heading_error_deg # [deg] Heading error of the pure pursuit controller | ||
float32 pid_heading_integral # Integral of the PID for the desired yaw rate during missions | ||
float32 pid_throttle_integral # Integral of the PID for the throttle during missions | ||
uint8 state_machine # Driving state of the rover [0: SPOT_TURNING, 1: DRIVING, 2: GOAL_REACHED] | ||
|
||
# TOPICS rover_mecanum_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,11 @@ | ||
uint64 timestamp # time since system start (microseconds) | ||
|
||
float32 forward_speed_setpoint # [m/s or normalized [-1, 1]] Desired forward speed for the rover | ||
float32 lateral_speed_setpoint # [m/s or normalized [-1, 1]] Desired lateral speed for the rover | ||
float32 yaw_rate_setpoint # [rad/s or normalized [-1, 1]] Desired yaw rate for the rover | ||
float32 yaw_setpoint # [rad] Desired yaw (heading) for the rover | ||
bool closed_loop_speed # Use closed loop velocity controller | ||
bool closed_loop_yaw_rate # Use closed loop yaw rate controller | ||
bool closed_loop_yaw # Use closed loop yaw controller | ||
|
||
# TOPICS rover_mecanum_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,9 +1,12 @@ | ||
uint64 timestamp # time since system start (microseconds) | ||
|
||
float32 forward_speed # [m/s] Actual forward speed of the rover | ||
float32 lateral_speed # [m/s] Actual lateral speed of the rover | ||
float32 actual_forward_speed # [m/s] Actual forward speed of the rover | ||
float32 desired_forward_speed # [m/s] Desired forward speed of the rover | ||
float32 actual_lateral_speed # [m/s] Actual lateral speed of the rover | ||
float32 desired_lateral_speed # [m/s] Desired lateral speed of the rover | ||
float32 desired_yaw_rate_deg_s # [deg/s] Desired yaw rate | ||
float32 actual_yaw_rate_deg_s # [deg/s] Actual yaw rate of the rover | ||
float32 actual_yaw_deg # [deg] Actual yaw of the rover | ||
float32 pid_yaw_rate_integral # Integral of the PID for the desired yaw rate controller | ||
|
||
# TOPICS rover_mecanum_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
Oops, something went wrong.