Skip to content

Commit

Permalink
🔥 remove mission_config.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
Rezenders committed Jan 26, 2024
1 parent d60649d commit e44f555
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 23 deletions.
19 changes: 0 additions & 19 deletions config/mission_config.yaml

This file was deleted.

2 changes: 1 addition & 1 deletion launch/suave_rosa.launch.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ def generate_launch_description():
)

mission_config = os.path.join(
get_package_share_directory('suave_rosa'),
get_package_share_directory('suave_missions'),
'config',
'mission_config.yaml'
)
Expand Down
2 changes: 1 addition & 1 deletion launch/suave_rosa_extended.launch.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ def generate_launch_description():
)

mission_config = os.path.join(
get_package_share_directory('suave_rosa'),
get_package_share_directory('suave_missions'),
'config',
'mission_config.yaml'
)
Expand Down
2 changes: 1 addition & 1 deletion src/suave_rosa.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ int main(int argc, char * argv[])
{
rclcpp::init(argc, argv);

std::shared_ptr<suave_rosa::SuaveMission> node = std::make_shared<suave_rosa::SuaveMission>("suave_rosa_bt");
std::shared_ptr<suave_rosa::SuaveMission> node = std::make_shared<suave_rosa::SuaveMission>("mission_node");

BT::BehaviorTreeFactory factory;
BT::SharedLibrary loader;
Expand Down
2 changes: 1 addition & 1 deletion src/suave_rosa_extended.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ int main(int argc, char * argv[])
{
rclcpp::init(argc, argv);

std::shared_ptr<suave_rosa::SuaveMission> node = std::make_shared<suave_rosa::SuaveMission>("suave_rosa_bt");
std::shared_ptr<suave_rosa::SuaveMission> node = std::make_shared<suave_rosa::SuaveMission>("mission_node");

BT::BehaviorTreeFactory factory;
BT::SharedLibrary loader;
Expand Down

0 comments on commit e44f555

Please sign in to comment.