-
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
refactor(raw_vehicle_cmd_converter)!: prefix package and namespace with autoware #7385
Merged
takayuki5168
merged 7 commits into
autowarefoundation:main
from
tier4:feat/autoware-prefix-raw-vehicle-cmd
Jun 10, 2024
Merged
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
817f930
add prefix
takayuki5168 cadb624
fix other packages
takayuki5168 8a836b2
fix cppcheck
takayuki5168 5686d30
Merge branch 'main' into feat/autoware-prefix-raw-vehicle-cmd
takayuki5168 4900af0
Merge branch 'main' into feat/autoware-prefix-raw-vehicle-cmd
takayuki5168 131a2db
pre-commit
takayuki5168 5e1ba2a
fix
takayuki5168 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 |
---|---|---|
|
@@ -247,7 +247,7 @@ tools/reaction_analyzer/** [email protected] | |
vehicle/accel_brake_map_calibrator/** [email protected] [email protected] [email protected] | ||
vehicle/autoware_steer_offset_estimator/** [email protected] | ||
vehicle/external_cmd_converter/** [email protected] | ||
vehicle/raw_vehicle_cmd_converter/** [email protected] [email protected] [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
2 changes: 1 addition & 1 deletion
2
vehicle/accel_brake_map_calibrator/launch/accel_brake_map_calibrator.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
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
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,44 @@ | ||
cmake_minimum_required(VERSION 3.14) | ||
project(autoware_raw_vehicle_cmd_converter) | ||
|
||
find_package(autoware_cmake REQUIRED) | ||
autoware_package() | ||
|
||
ament_auto_add_library(actuation_map_converter SHARED | ||
src/accel_map.cpp | ||
src/brake_map.cpp | ||
src/steer_map.cpp | ||
src/csv_loader.cpp | ||
src/pid.cpp | ||
) | ||
|
||
ament_auto_add_library(autoware_raw_vehicle_cmd_converter_node_component SHARED | ||
src/node.cpp | ||
) | ||
|
||
target_link_libraries(autoware_raw_vehicle_cmd_converter_node_component actuation_map_converter) | ||
|
||
rclcpp_components_register_node(autoware_raw_vehicle_cmd_converter_node_component | ||
PLUGIN "autoware::raw_vehicle_cmd_converter::RawVehicleCommandConverterNode" | ||
EXECUTABLE autoware_raw_vehicle_cmd_converter_node | ||
) | ||
|
||
if(BUILD_TESTING) | ||
set(TEST_SOURCES | ||
test/test_autoware_raw_vehicle_cmd_converter.cpp | ||
) | ||
set(TEST_RAW_VEHICLE_CMD_CONVERTER_EXE test_autoware_raw_vehicle_cmd_converter) | ||
ament_add_ros_isolated_gtest(${TEST_RAW_VEHICLE_CMD_CONVERTER_EXE} ${TEST_SOURCES}) | ||
target_link_libraries(${TEST_RAW_VEHICLE_CMD_CONVERTER_EXE} actuation_map_converter autoware_raw_vehicle_cmd_converter_node_component) | ||
endif() | ||
|
||
ament_auto_package(INSTALL_TO_SHARE | ||
config | ||
data | ||
launch | ||
test | ||
) | ||
|
||
install(PROGRAMS scripts/plot_accel_brake_map.py | ||
DESTINATION lib/${PROJECT_NAME} | ||
) |
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
6 changes: 3 additions & 3 deletions
6
...nfig/raw_vehicle_cmd_converter.param.yaml → ...nfig/raw_vehicle_cmd_converter.param.yaml
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.
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
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
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
@takayuki5168
[just a single comment]
I understand that this PR doesn't include
accel_brake_map_calibrator
's change. But its change will be necessary later.