Skip to content

Commit 35b7c6f

Browse files
committed
Add imu sensor type
1 parent 87e5125 commit 35b7c6f

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
---
2+
# /*! @brief Output structure for IMU structure in vehicle body frame*/
3+
# typedef struct {
4+
# float DVFrameBody[3]; //!< m/s Accumulated DVs in body
5+
# float AccelBody[3]; //!< m/s2 Apparent acceleration of the body
6+
# float DRFrameBody[3]; //!< r Accumulated DRs in body
7+
# float AngVelBody[3]; //!< r/s Angular velocity in platform body
8+
# } IMUSensorBodyMsgF32Payload;
9+
fields:
10+
- name: Dv_Frame_Body
11+
type: Packed_F32x3.T
12+
description: "[m/s] Accumulated DVs in body"
13+
- name: Accel_Body
14+
type: Packed_F32x3.T
15+
description: "[m/s2] Apparent acceleration of the body"
16+
- name: Dr_Frame_Body
17+
type: Packed_F32x3.T
18+
description: "[r] Accumulated DRs in body"
19+
- name: Ang_Vel_Body
20+
type: Packed_F32x3.T
21+
description: "[r/s] Angular velocity in platform body"

0 commit comments

Comments
 (0)