-
Notifications
You must be signed in to change notification settings - Fork 349
feat(psim)!: change a setting parameter type from bool to string #1106
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
Changes from 3 commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -37,6 +37,8 @@ | |||||
<arg name="enable_all_modules_auto_mode" default="$(var scenario_simulation)" description="enable all module's auto mode"/> | ||||||
<!-- Simulated time --> | ||||||
<arg name="use_sim_time" default="$(var scenario_simulation)"/> | ||||||
<!-- Localization--> | ||||||
<arg name="localization_sim_mode" default="api" description="select localization mode. none, api"/> | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I've add description. 226f872 |
||||||
|
||||||
<group scoped="false"> | ||||||
<!-- Vehicle --> | ||||||
|
@@ -81,13 +83,13 @@ | |||||
<let name="launch_dummy_perception" value="true" unless="$(var scenario_simulation)"/> | ||||||
<let name="launch_dummy_vehicle" value="false" if="$(var scenario_simulation)"/> | ||||||
<let name="launch_dummy_vehicle" value="true" unless="$(var scenario_simulation)"/> | ||||||
<let name="launch_dummy_localization" value="true"/> | ||||||
<let name="localization_sim_mode" value="$(var localization_sim_mode)"/> | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Now that we added localization_sim_mode as There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Sorry for my poor understanding. Thank you. |
||||||
<let name="launch_diagnostic_converter" value="$(var scenario_simulation)"/> | ||||||
|
||||||
<include file="$(find-pkg-share autoware_launch)/launch/components/tier4_simulator_component.launch.xml"> | ||||||
<arg name="launch_dummy_perception" value="$(var launch_dummy_perception)"/> | ||||||
<arg name="launch_dummy_vehicle" value="$(var launch_dummy_vehicle)"/> | ||||||
<arg name="launch_dummy_localization" value="$(var launch_dummy_localization)"/> | ||||||
<arg name="localization_sim_mode" value="$(var localization_sim_mode)"/> | ||||||
<arg name="launch_dummy_doors" value="$(var launch_dummy_doors)"/> | ||||||
<arg name="launch_diagnostic_converter" value="$(var launch_diagnostic_converter)"/> | ||||||
<arg name="perception/enable_detection_failure" value="$(var perception/enable_detection_failure)"/> | ||||||
|
Uh oh!
There was an error while loading. Please reload this page.