diff --git a/docker-compose.yaml b/docker-compose.yaml index 1189dcd..f4512f6 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -1,6 +1,6 @@ services: toid: - image: toid + image: localhost:5000/toid container_name: toid privileged: true diff --git a/toid_behaviors/CMakeLists.txt b/toid_behaviors/CMakeLists.txt deleted file mode 100644 index 93201c2..0000000 --- a/toid_behaviors/CMakeLists.txt +++ /dev/null @@ -1,63 +0,0 @@ -cmake_minimum_required(VERSION 3.8) -project(toid_control) - -if(CMAKE_COMPILER_IS_GNUCXX OR CMAKE_CXX_COMPILER_ID MATCHES "Clang") - add_compile_options(-Wall -Wextra -Wpedantic) -endif() - -set(library_name toid_control) - -set(PACKAGE_DEPS - rclcpp - pluginlib - hardware_interface - rclcpp_lifecycle - rclcpp_components -) - -# find dependencies -find_package(ament_cmake REQUIRED) - -foreach(PACKAGE ${PACKAGE_DEPS}) - find_package(${PACKAGE} REQUIRED) -endforeach() - - -add_library( - ${library_name} - SHARED - src/toid_control.cpp -) - -target_include_directories( - ${library_name} - PRIVATE - include -) - -ament_target_dependencies(${library_name} - ${PACKAGE_DEPS} -) - -pluginlib_export_plugin_description_file(hardware_interface toid_control_interfaces.xml) - -install( - TARGETS ${library_name} - ARCHIVE DESTINATION lib - LIBRARY DESTINATION lib - RUNTIME DESTINATION bin -) - -install( - DIRECTORY - launch - params - rviz - DESTINATION share/${PROJECT_NAME}/ -) - -ament_export_include_directories(include) -ament_export_libraries(${library_name}) -ament_export_dependencies(${PACKAGE_DEPS}) - -ament_package() diff --git a/toid_behaviors/package.xml b/toid_behaviors/package.xml deleted file mode 100644 index d96c227..0000000 --- a/toid_behaviors/package.xml +++ /dev/null @@ -1,35 +0,0 @@ - - - - toid_control - 0.0.1 - Ros2 control compatible drivers for magrob - Pimpest - Apache-2.0 - - ament_cmake - - ros2launch - - rclcpp - rclcpp_lifecycle - rclcpp_components - pluginlib - - ros2_control - hardware_interface - - controller_manager - diff_drive_controller - robot_state_publisher - joint_state_broadcaster - - boost - - ament_lint_auto - ament_lint_common - - - ament_cmake - - diff --git a/toid_behaviors/toid_control_interfaces.xml b/toid_behaviors/toid_control_interfaces.xml deleted file mode 100644 index 53369d8..0000000 --- a/toid_behaviors/toid_control_interfaces.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - \ No newline at end of file