-
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.
Merge branch 'main' into 500-general-add-an-overview-of-the-perceptio…
…n-in-the-documentation
- Loading branch information
Showing
84 changed files
with
3,238 additions
and
539 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
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 |
---|---|---|
@@ -0,0 +1,23 @@ | ||
{ | ||
// Use IntelliSense to learn about possible attributes. | ||
// Hover to view descriptions of existing attributes. | ||
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"name": "53000 leaderboard attach", | ||
"type": "debugpy", | ||
"request": "attach", | ||
"connect": { | ||
"host": "localhost", | ||
"port": 53000 | ||
}, | ||
"pathMappings": [ | ||
{ | ||
"localRoot": "${workspaceFolder}/code", | ||
"remoteRoot": "${env:PAF_CATKIN_CODE_ROOT}" | ||
} | ||
] | ||
} | ||
], | ||
} |
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,22 @@ | ||
{ | ||
"version": "2.0.0", | ||
"tasks": [ | ||
{ | ||
"label": "Run 'catkin_make' in docker container. Choose container from list of running containers.", | ||
"type": "shell", | ||
"command": "docker exec -it ${input:container_name} bash -c 'cd ../../catkin_ws && source /opt/ros/noetic/setup.bash && bash devel/setup.bash && catkin_make'", | ||
"problemMatcher": [], | ||
"detail": "Executes 'catkin_make' selected container. Requires Tasks Shell Input Extension, in order to generate the list of containers.", | ||
} | ||
], | ||
"inputs": [ | ||
{ | ||
"id": "container_name", | ||
"type": "command", | ||
"command": "shellCommand.execute", | ||
"args": { | ||
"command": "docker ps --format '{{.Names}}'", | ||
} | ||
} | ||
] | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,41 +1,21 @@ | ||
<!----> | ||
<launch> | ||
<arg name="role_name" default="hero" /> | ||
<arg name="control_loop_rate" default="0.05" /> | ||
<arg name="control_loop_rate" default="0.05" /> | ||
|
||
<node pkg="acting" type="velocity_controller.py" name="velocity_controller" output="screen"> | ||
<param name="control_loop_rate" value="$(arg control_loop_rate)" /> | ||
<param name="role_name" value="$(arg role_name)" /> | ||
</node> | ||
|
||
<node pkg="acting" type="stanley_controller.py" name="stanley_controller" output="screen"> | ||
<param name="control_loop_rate" value="$(arg control_loop_rate)" /> | ||
<!--Passthrough | ||
all messages the control package needs--> | ||
<node pkg="acting" type="passthrough.py" name="passthrough" output="screen"> | ||
<param name="role_name" value="$(arg role_name)" /> | ||
</node> | ||
|
||
<node pkg="acting" type="pure_pursuit_controller.py" name="pure_pursuit_controller" output="screen"> | ||
<param name="control_loop_rate" value="$(arg control_loop_rate)" /> | ||
<param name="role_name" value="$(arg role_name)" /> | ||
</node> | ||
|
||
<node pkg="acting" type="vehicle_controller.py" name="vehicle_controller" output="screen"> | ||
<param name="control_loop_rate" value="$(arg control_loop_rate)" /> <!-- leaderboard expects commands every 0.05 seconds OTHERWISE IT LAGS REALLY BADLY--> | ||
<param name="role_name" value="$(arg role_name)" /> | ||
</node> | ||
|
||
<node pkg="acting" type="MainFramePublisher.py" name="MainFramePublisher" output="screen"> | ||
<param name="control_loop_rate" value="$(arg control_loop_rate)" /> | ||
<param name="role_name" value="$(arg role_name)" /> | ||
</node> | ||
|
||
<!-- UNCOMMENT THIS TO USE THE DEBUG_NODE FOR ACTING-TESTING --> | ||
<!-- <node pkg="acting" type="Acting_Debug_Node.py" name="Acting_Debug_Node" output="screen"> | ||
<param name="control_loop_rate" value="$(arg control_loop_rate)" /> | ||
<param name="control_loop_rate" value="$(arg control_loop_rate)" /> | ||
<param name="role_name" value="$(arg role_name)" /> | ||
</node> | ||
--> | ||
|
||
<!-- If you want a live rqt_plots to show up automatically, include them like following example-plot for Velocity-Controller-Testing --> | ||
<!--node pkg="rqt_plot" type="rqt_plot" output="screen" name="velocity_test" args="/carla/hero/Speed /paf/hero/target_velocity /paf/hero/throttle /paf/hero/brake"/--> | ||
|
||
</launch> | ||
<include file="$(find control)/launch/control.launch"> | ||
<arg name="control_loop_rate" value="$(arg control_loop_rate)" /> | ||
</include> | ||
</launch> |
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.