forked from CMU-Robotics-Club/RoboBuggy2
-
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
67ac75e
commit c93cbbf
Showing
4 changed files
with
55 additions
and
22 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
/**: # Global Params | ||
ros__parameters: | ||
traj_name: "buggycourse_safe.json" | ||
|
||
NAND: | ||
NAND_sim_single: | ||
ros__parameters: | ||
velocity: 10 | ||
pose: "Hill1_NAND" | ||
|
||
NAND_controller: | ||
ros__parameters: | ||
dist: 0.0 | ||
# traj_name: "buggycourse_safe.json" | ||
controller: "stanley" | ||
|
||
SC: | ||
SC_sim_single: | ||
ros__parameters: | ||
velocity: 12 | ||
pose: "Hill1_SC" | ||
|
||
SC: | ||
SC_controller: | ||
ros__parameters: | ||
dist: 0.0 | ||
# traj_name: "buggycourse_safe.json" | ||
controller: "stanley" | ||
|
||
SC: | ||
SC_path_planner: | ||
ros__parameters: | ||
traj_name: "buggycourse_safe.json" | ||
curb_name: "buggycourse_curb.json" |
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,10 @@ | ||
/SC/SC_sim_single: | ||
ros__parameters: | ||
velocity: 12 | ||
pose: "Hill1_SC" | ||
|
||
/SC/SC_controller: | ||
ros__parameters: | ||
dist: 10.0 | ||
traj_name: "buggycourse_safe.json" | ||
controller: "stanley" | ||
SC: | ||
SC_sim_single: | ||
ros__parameters: | ||
velocity: 12 | ||
pose: "Hill1_SC" | ||
SC_controller: | ||
ros__parameters: | ||
dist: 0.0 | ||
traj_name: "buggycourse_safe.json" | ||
controller: "stanley" |
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,31 +1,26 @@ | ||
<launch> | ||
|
||
<arg name="config_file" default="src/buggy/config/sim_double.yaml"/> | ||
|
||
<node pkg="foxglove_bridge" exec="foxglove_bridge" name="foxglove" output = "screen" namespace="SC"/> | ||
|
||
<node pkg="buggy" exec="buggy_state_converter.py" name="NAND_state_converter" output = "screen" namespace="NAND"/> | ||
<node pkg="buggy" exec="controller_node.py" name="NAND_controller" output = "screen" namespace="NAND"> | ||
<param name="dist" value="0.0"/> | ||
<param name="traj_name" value="buggycourse_safe.json"/> | ||
<param name="controller" value="stanley"/> | ||
<param from="$(var config_file)"/> | ||
</node> | ||
<node pkg="buggy" exec="engine.py" name="NAND_sim_single" output = "screen" namespace="NAND"> | ||
<param name="velocity" value="8"/> | ||
<param name="pose" value="Hill1_NAND"/> | ||
<param from="$(var config_file)"/> | ||
</node> | ||
|
||
<node pkg="buggy" exec="buggy_state_converter.py" name="SC_state_converter" output = "screen" namespace="SC"/> | ||
<node pkg="buggy" exec="controller_node.py" name="SC_controller" output = "screen" namespace="SC"> | ||
<param name="dist" value="0.0"/> | ||
<param name="traj_name" value="buggycourse_safe.json"/> | ||
<param name="controller" value="stanley"/> | ||
<param from="$(var config_file)"/> | ||
</node> | ||
<node pkg="buggy" exec="engine.py" name="SC_sim_single" output = "screen" namespace="SC"> | ||
<param name="velocity" value="12"/> | ||
<param name="pose" value="Hill1_SC"/> | ||
<param from="$(var config_file)"/> | ||
</node> | ||
<node pkg="buggy" exec="path_planner.py" name="SC_path_planner" namespace="SC" output = "screen"> | ||
<param name="traj_name" value="buggycourse_safe.json"/> | ||
<remap from="other/state" to="/NAND/self/state"/> | ||
<param from="$(var config_file)"/> | ||
</node> | ||
|
||
</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