mi-task/example/motion/loc_lcmt.lcm
2025-05-13 09:09:54 +00:00

15 lines
583 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/** lcm通道信息
- url: "udpm://239.255.76.67:7667?ttl=255"
- channel: "global_to_robot"
- frequncy: 50HZ
*/
/** lcm数据结构 */
struct localization_lcmt {
float xyz[3]; // 表达在腿式里程计坐标系的机身位置
float vxyz[3]; // 表达在腿式里程计坐标系的机身线速度
float rpy[3]; // 表达在腿式里程计坐标系的机身欧拉角
float omegaBody[3]; // 表达在机身坐标系的机身角速度
float vBody[3]; // 表达在机身坐标系的机身线速度
int64_t timestamp; // 时间戳单位nanoseconds
}