Implented point to point DWM action server

This commit is contained in:
2025-02-07 15:55:03 +01:00
parent 41de2c5c78
commit 6df52b7c81
19 changed files with 898 additions and 0 deletions

19
mg_msgs/CMakeLists.txt Normal file
View File

@ -0,0 +1,19 @@
cmake_minimum_required(VERSION 3.8)
project(mg_msgs)
if(CMAKE_COMPILER_IS_GNUCXX OR CMAKE_CXX_COMPILER_ID MATCHES "Clang")
add_compile_options(-Wall -Wextra -Wpedantic)
endif()
# find dependencies
find_package(ament_cmake REQUIRED)
find_package(rosidl_default_generators REQUIRED)
rosidl_generate_interfaces(${PROJECT_NAME}
"msg/Point2d.msg"
"action/MoveStraight.action"
"action/MovePoint.action"
"action/LookAt.action"
)
ament_package()