Where to put Planning/Control parameters in order to integrate Autoware to the specific vehicle #2553
Replies: 0 comments 3 replies
-
|
@takayuki5168 I completely agree with you. Some additional information: |
Beta Was this translation helpful? Give feedback.
-
For example, do what parameters differ among products? |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Currently, autoware has planning/control parameters in tier4_planning_launch and tier4_control_launch.
Integrating autoware to the specific vehicle requires at least two kinds of parameters regarding planning/control as follows.
Here I explained one suggestion to solve this issue.
For 1, we can set this kind of parameters from autoware_launch.
For example, planning parameters can be set from autoware_launch with this PR, by defining arguments in
planning.launch.xmlwhich will be called from autoware_launch.Then, each product will have its own autoware_launch repository like autoware_launch.<product_name> forked from autoware_launch and set the product's parameters.
For 2, we can have this kind of parameters in another repository like autoware_individual_parameters.
We also prepare product's repository like autoware_individual_params.<product_name> reopsitory forked from autoware_individual_params.
(updated)
For1, I found it a bit difficult to put all planning parameters which differs among products in arguments of
planning.launch.xmlsince they are so many. Better to have these parameters as a yaml file in individual_params (the same as control parameters) rather than arguments of xml.Beta Was this translation helpful? Give feedback.
All reactions