AS: adding first phase of orientation

This commit is contained in:
Alexander Schaefer
2025-01-29 09:58:44 +00:00
parent 79001dc331
commit 45650caa1b
5106 changed files with 582827 additions and 0 deletions

View File

@@ -0,0 +1,3 @@
/root/ros2_ws/build/tutorial_interfaces/rosidl_adapter/tutorial_interfaces:msg/Num.idl
/root/ros2_ws/build/tutorial_interfaces/rosidl_adapter/tutorial_interfaces:msg/Sphere.idl
/root/ros2_ws/build/tutorial_interfaces/rosidl_adapter/tutorial_interfaces:srv/AddThreeInts.idl

View File

@@ -0,0 +1,12 @@
// generated from rosidl_adapter/resource/msg.idl.em
// with input from tutorial_interfaces/msg/Num.msg
// generated code does not contain a copyright notice
module tutorial_interfaces {
module msg {
struct Num {
int64 num;
};
};
};

View File

@@ -0,0 +1,15 @@
// generated from rosidl_adapter/resource/msg.idl.em
// with input from tutorial_interfaces/msg/Sphere.msg
// generated code does not contain a copyright notice
#include "geometry_msgs/msg/Point.idl"
module tutorial_interfaces {
module msg {
struct Sphere {
geometry_msgs::msg::Point center;
double radius;
};
};
};

View File

@@ -0,0 +1,19 @@
// generated from rosidl_adapter/resource/srv.idl.em
// with input from tutorial_interfaces/srv/AddThreeInts.srv
// generated code does not contain a copyright notice
module tutorial_interfaces {
module srv {
struct AddThreeInts_Request {
int64 a;
int64 b;
int64 c;
};
struct AddThreeInts_Response {
int64 sum;
};
};
};