ardupilot/libraries/AP_DDS/Idl/PoseStamped.idl
Ryan Friedman 80a0373717 AP_DDS: Bump to using latest MicroXRCEDDSGen
* Adds -cs argument to fix case sensitive issue with PoseStamped
* Adds support for uint8_t type alias
* Updated the copies of IDL to remove these mods, matching upstream
* Solves #23302

Signed-off-by: Ryan Friedman <ryanfriedman5410+github@gmail.com>
2023-03-29 21:50:12 +11:00

19 lines
459 B
Plaintext

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