ardupilot/libraries/AP_DDS/Idl/TwistStamped.idl
Ryan Friedman 0905ffa438 AP_DDS: Add initial DDS Client support
* Use clang to verify no unused files
* Add a topic table to prepare for code generating interfaces
* Generated IDL's to to a generated directory in build
* Use black to format python files
* Populate a ROS time maessage with Linux epoch time for ROS time
* Add workarounds for PoseStamped and TwistStamped with manual mods to IDL

Signed-off-by: Ryan Friedman <ryanfriedman5410+github@gmail.com>
Co-authored-by: Rhys Mainwaring <rhys.mainwaring@me.com>
Co-authored-by: Arsh Pratap <arshpratapofficial@gmail.com>
Co-authored-by: Andrew Tridgell <andrew@tridgell.net>
Co-authored-by: Russ Webber <russ@rw.id.au>
Co-authored-by: Peter Barker <pb-gh@barker.dropbear.id.au>
2023-03-22 09:22:36 +11:00

24 lines
543 B
Plaintext

// generated from rosidl_adapter/resource/msg.idl.em
// with input from geometry_msgs/msg/TwistStamped.msg
// generated code does not contain a copyright notice
#include "Vector3.idl"
#include "Header.idl"
struct Twist {
geometry_msgs::msg::Vector3 linear;
geometry_msgs::msg::Vector3 angular;
};
module geometry_msgs {
module msg {
@verbatim (language="comment", text=
"A twist with reference coordinate frame and timestamp")
struct TwistStamped {
std_msgs::msg::Header header;
Twist twist;
};
};
};