-
Notifications
You must be signed in to change notification settings - Fork 669
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(psim)!: change a setting parameter type from bool to string #8331
feat(psim)!: change a setting parameter type from bool to string #8331
Conversation
Thank you for contributing to the Autoware project! 🚧 If your pull request is in progress, switch it to draft mode. Please ensure:
|
79f0f99
to
27fd3ca
Compare
@@ -9,7 +9,7 @@ | |||
<arg name="launch_simulator_perception_modules" default="true"/> | |||
<arg name="launch_dummy_perception"/> | |||
<arg name="launch_dummy_vehicle"/> | |||
<arg name="launch_dummy_localization"/> | |||
<arg name="localization_sim_mode"/> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
<arg name="localization_sim_mode"/> | |
<arg name="localization_sim_mode", description="select localization mode. Options are 'none' or 'api'. 'api' starts an external API for initial position estimation. 'none' does not start any localization-related process."/> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
To enrich the description.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
Signed-off-by: Yuki Takagi <[email protected]>
Signed-off-by: Yuki Takagi <[email protected]>
9fb858f
to
49a0c62
Compare
31263bd
into
autowarefoundation:main
…owarefoundation#8331) * change a param type, bool to string * add param description, add null tag group for the null option --------- Signed-off-by: Yuki Takagi <[email protected]> Signed-off-by: xtk8532704 <[email protected]>
…owarefoundation#8331) * change a param type, bool to string * add param description, add null tag group for the null option --------- Signed-off-by: Yuki Takagi <[email protected]>
…owarefoundation#8331) * change a param type, bool to string * add param description, add null tag group for the null option --------- Signed-off-by: Yuki Takagi <[email protected]>
…owarefoundation#8331) * change a param type, bool to string * add param description, add null tag group for the null option --------- Signed-off-by: Yuki Takagi <[email protected]>
Description
This is the PR to follow up on the launch side PR autowarefoundation/autoware_launch#1106.
For more details, please see the launch PR
Related links
This PR is a part of the following issue.
autowarefoundation/autoware_launch#1100
How was this PR tested?
psim and scenario_sim
Notes for reviewers
None.
Interface changes
None.
Effects on system behavior
None.