-
Notifications
You must be signed in to change notification settings - Fork 675
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat(fault_injection): apply `autoware_` prefix (see below): Note: * In this commit, I did not organize a folder structure. The folder structure will be organized in the next some commits. * The changes will follow the Autoware's guideline as below: - https://autowarefoundation.github.io/autoware-documentation/main/contributing/coding-guidelines/ros-nodes/directory-structure/#package-folder Signed-off-by: Junya Sasaki <[email protected]> * rename(fault_injection): move headers under `include/autoware`: * Fixes due to this changes for .hpp/.cpp files will be applied in the next commit Signed-off-by: Junya Sasaki <[email protected]> * fix(fault_injection): fix include header paths * To follow the previous commit Signed-off-by: Junya Sasaki <[email protected]> * rename: `fault_injection` => `autoware_fault_injection` Signed-off-by: Junya Sasaki <[email protected]> * Fixed exec_depend Signed-off-by: Shintaro Sakoda <[email protected]> --------- Signed-off-by: Junya Sasaki <[email protected]> Signed-off-by: Shintaro Sakoda <[email protected]> Co-authored-by: SakodaShintaro <[email protected]>
- Loading branch information
1 parent
8eed7e9
commit 4b6a342
Showing
19 changed files
with
62 additions
and
59 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
File renamed without changes.
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
File renamed without changes.
File renamed without changes.
File renamed without changes
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
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
10 changes: 10 additions & 0 deletions
10
simulator/autoware_fault_injection/launch/fault_injection.launch.xml
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,10 @@ | ||
<launch> | ||
<arg name="input/simulation_events" default="/simulation/events"/> | ||
<arg name="config_file" default="$(find-pkg-share autoware_fault_injection)/config/fault_injection.param.yaml"/> | ||
<arg name="log-level" default="info"/> | ||
|
||
<node pkg="autoware_fault_injection" exec="autoware_fault_injection_node" name="autoware_fault_injection" output="screen" args="--ros-args --log-level fault_injection:=$(var log-level)"> | ||
<remap from="~/input/simulation_events" to="$(var input/simulation_events)"/> | ||
<param from="$(var config_file)"/> | ||
</node> | ||
</launch> |
5 changes: 3 additions & 2 deletions
5
simulator/fault_injection/package.xml → ...ator/autoware_fault_injection/package.xml
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,11 @@ | ||
<?xml version="1.0"?> | ||
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?> | ||
<package format="3"> | ||
<name>fault_injection</name> | ||
<name>autoware_fault_injection</name> | ||
<version>0.40.0</version> | ||
<description>fault_injection</description> | ||
<description>The fault_injection package</description> | ||
<maintainer email="[email protected]">Keisuke Shima</maintainer> | ||
<maintainer email="[email protected]">Junya Sasaki</maintainer> | ||
<license>Apache License 2.0</license> | ||
|
||
<buildtool_depend>ament_cmake_auto</buildtool_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
File renamed without changes.
6 changes: 6 additions & 0 deletions
6
simulator/autoware_fault_injection/test/launch/test_fault_injection.launch.xml
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,6 @@ | ||
<launch> | ||
<include file="$(find-pkg-share autoware_fault_injection)/launch/fault_injection.launch.xml"> | ||
<arg name="log-level" value="debug"/> | ||
<arg name="config_file" value="$(find-pkg-share autoware_fault_injection)/config/test_event_diag.param.yaml"/> | ||
</include> | ||
</launch> |
2 changes: 1 addition & 1 deletion
2
simulator/fault_injection/test/src/main.cpp → ...utoware_fault_injection/test/src/main.cpp
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
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
10 changes: 0 additions & 10 deletions
10
simulator/fault_injection/launch/fault_injection.launch.xml
This file was deleted.
Oops, something went wrong.
6 changes: 0 additions & 6 deletions
6
simulator/fault_injection/test/launch/test_fault_injection.launch.xml
This file was deleted.
Oops, something went wrong.