-
Notifications
You must be signed in to change notification settings - Fork 668
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(trajectory_follower_node): add proxima python control
Signed-off-by: kosuke55 <[email protected]>
- Loading branch information
Showing
12 changed files
with
2,638 additions
and
2 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 |
---|---|---|
|
@@ -17,17 +17,22 @@ | |
<author email="[email protected]">Takayuki Murooka</author> | ||
|
||
<buildtool_depend>ament_cmake_auto</buildtool_depend> | ||
<buildtool_depend>ament_cmake_python</buildtool_depend> | ||
<buildtool_depend>autoware_cmake</buildtool_depend> | ||
|
||
<depend>autoware_adapi_v1_msgs</depend> | ||
<depend>autoware_auto_control_msgs</depend> | ||
<depend>autoware_auto_planning_msgs</depend> | ||
<depend>autoware_auto_system_msgs</depend> | ||
<depend>autoware_auto_vehicle_msgs</depend> | ||
<depend>casadi-pip</depend> | ||
<depend>motion_utils</depend> | ||
<depend>mpc_lateral_controller</depend> | ||
<depend>pid_longitudinal_controller</depend> | ||
<depend>pure_pursuit</depend> | ||
<depend>python3-numba</depend> | ||
<depend>python3-pytorch-pip</depend> | ||
<depend>python3-scipy</depend> | ||
<depend>rclcpp</depend> | ||
<depend>rclcpp_components</depend> | ||
<depend>trajectory_follower_base</depend> | ||
|
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,25 @@ | ||
# python版MPC開発README | ||
|
||
## 使用方法 | ||
|
||
- ビルドする | ||
|
||
- シミュレーション全体の起動 | ||
|
||
autoware | ||
|
||
``` | ||
ros2 launch autoware_launch planning_simulator.launch.xml record:=false sensor_model:=sample_sensor_kit vehicle_model:=sample_vehicle map_path:=$HOME/autoware_map/sample-map-planning | ||
``` | ||
|
||
pilot-auto | ||
|
||
``` | ||
ros2 launch autoware_launch planning_simulator.launch.xml record:=false vehicle_model:=lexus sensor_model:=aip_xx1 map_path:=$HOME/autoware_map/sample-map-planning | ||
``` | ||
|
||
- debug echo | ||
|
||
``` | ||
ros2 topic echo /debug_mpc_X_des tier4_debug_msgs/msg/Float32MultiArrayStamped | ||
``` |
Oops, something went wrong.