-
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(mrm_emergency_stop_operator): 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(mrm_emergency_stop_operator): move a header 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(mrm_emergency_stop_operator): fix include header path * To follow the previous commit Signed-off-by: Junya Sasaki <[email protected]> * rename: `mrm_emergency_stop_operator` => `autoware_mrm_emergency_stop_operator` Signed-off-by: Junya Sasaki <[email protected]> * bug(autoware_mrm_emergency_stop_operator): revert wrongly updated copyrights Signed-off-by: Junya Sasaki <[email protected]> * bug(tier4_system_launch): fix a missing `autoware_` for `mrm_emergency_stop_operator` Signed-off-by: Junya Sasaki <[email protected]> * bug(autoware_mrm_emergency_stop_operator): fix critical bugs that contaminate topic names Signed-off-by: Junya Sasaki <[email protected]> --------- Signed-off-by: Junya Sasaki <[email protected]>
- Loading branch information
1 parent
dbfee16
commit c53af8a
Showing
10 changed files
with
34 additions
and
32 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.
19 changes: 19 additions & 0 deletions
19
system/autoware_mrm_emergency_stop_operator/CMakeLists.txt
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,19 @@ | ||
cmake_minimum_required(VERSION 3.14) | ||
project(autoware_mrm_emergency_stop_operator) | ||
|
||
find_package(autoware_cmake REQUIRED) | ||
autoware_package() | ||
|
||
ament_auto_add_library(${PROJECT_NAME}_component SHARED | ||
src/mrm_emergency_stop_operator/mrm_emergency_stop_operator_core.cpp | ||
) | ||
|
||
rclcpp_components_register_node(${PROJECT_NAME}_component | ||
PLUGIN "autoware::mrm_emergency_stop_operator::MrmEmergencyStopOperator" | ||
EXECUTABLE ${PROJECT_NAME}_node | ||
) | ||
|
||
ament_auto_package(INSTALL_TO_SHARE | ||
launch | ||
config | ||
) |
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
3 changes: 2 additions & 1 deletion
3
...m/mrm_emergency_stop_operator/package.xml → ...e_mrm_emergency_stop_operator/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,11 +1,12 @@ | ||
<?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>mrm_emergency_stop_operator</name> | ||
<name>autoware_mrm_emergency_stop_operator</name> | ||
<version>0.40.0</version> | ||
<description>The MRM emergency stop operator package</description> | ||
<maintainer email="[email protected]">Makoto Kurihara</maintainer> | ||
<maintainer email="[email protected]">Tomohito Ando</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
This file was deleted.
Oops, something went wrong.