-
Notifications
You must be signed in to change notification settings - Fork 660
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor(external cmd converter)!: add autoware_ prefix (#7361)
* add prefix to the code Signed-off-by: Yuki Takagi <[email protected]> * rename Signed-off-by: Yuki Takagi <[email protected]> * fix Signed-off-by: Yuki Takagi <[email protected]> * fix Signed-off-by: Yuki Takagi <[email protected]> * fix Signed-off-by: Yuki Takagi <[email protected]> * Update .github/CODEOWNERS --------- Signed-off-by: Yuki Takagi <[email protected]> Co-authored-by: Takayuki Murooka <[email protected]>
- Loading branch information
1 parent
c50743d
commit e438fc5
Showing
13 changed files
with
41 additions
and
38 deletions.
There are no files selected for viewing
Validating CODEOWNERS rules …
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 |
---|---|---|
|
@@ -244,9 +244,8 @@ system/system_monitor/** [email protected] [email protected] | |
system/topic_state_monitor/** [email protected] | ||
system/velodyne_monitor/** [email protected] | ||
tools/reaction_analyzer/** [email protected] | ||
vehicle/autoware_steer_offset_estimator/** [email protected] | ||
vehicle/autoware_accel_brake_map_calibrator/** [email protected] [email protected] [email protected] | ||
vehicle/external_cmd_converter/** [email protected] | ||
vehicle/autoware_external_cmd_converter/** [email protected] | ||
vehicle/autoware_raw_vehicle_cmd_converter/** [email protected] [email protected] [email protected] | ||
vehicle/autoware_steer_offset_estimator/** [email protected] | ||
vehicle/autoware_vehicle_info_utils/** [email protected] [email protected] [email protected] | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
cmake_minimum_required(VERSION 3.14) | ||
project(autoware_external_cmd_converter) | ||
|
||
find_package(autoware_cmake REQUIRED) | ||
autoware_package() | ||
|
||
ament_auto_add_library(autoware_external_cmd_converter SHARED | ||
src/node.cpp | ||
) | ||
|
||
rclcpp_components_register_node(autoware_external_cmd_converter | ||
PLUGIN "autoware::external_cmd_converter::ExternalCmdConverterNode" | ||
EXECUTABLE external_cmd_converter_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
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
4 changes: 2 additions & 2 deletions
4
vehicle/external_cmd_converter/package.xml → ...toware_external_cmd_converter/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,9 +1,9 @@ | ||
<?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>external_cmd_converter</name> | ||
<name>autoware_external_cmd_converter</name> | ||
<version>0.1.0</version> | ||
<description>The external_cmd_converter package</description> | ||
<description>The autoware_external_cmd_converter package</description> | ||
<maintainer email="[email protected]">Takamasa Horibe</maintainer> | ||
<maintainer email="[email protected]">Eiki Nagata</maintainer> | ||
<license>Apache License 2.0</license> | ||
|
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 was deleted.
Oops, something went wrong.