-
Notifications
You must be signed in to change notification settings - Fork 395
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #194 from Sandruz/add-efs-alg-message-topic
Add EfsALG msg and topic
- Loading branch information
Showing
5 changed files
with
42 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
# ESF-ALG (0x10 0x14) | ||
# IMU alignment information | ||
# | ||
# This message outputs the IMU alignment angles which define the rotation from the installation-frame to the | ||
# IMU-frame. In addition, it indicates the automatic IMU-mount alignment status. | ||
# | ||
|
||
uint8 CLASS_ID = 16 | ||
uint8 MESSAGE_ID = 20 | ||
|
||
uint8 FLAGS_AUTO_MNT_ALG_ON = 0 | ||
uint32 FLAGS_STATUS = 14 | ||
|
||
uint8 FLAGS_STATUS_USER_FIXED_ANGLES_USED = 0 | ||
uint8 FLAGS_STATUS_ROLL_PITCH_ANGLES_ALIGNEMENT_ONGOING = 1 | ||
uint8 FLAGS_STATUS_ROLL_PITCH_YAW_ANGLES_ALIGNEMENT_ONGOING = 2 | ||
uint8 FLAGS_STATUS_COARSE_ALIGNMENT_USED = 3 | ||
uint8 FLAGS_STATUS_FINE_ALIGNEMENT_USED = 4 | ||
|
||
uint8 ERROR_TILT_ARG_ERROR = 1 | ||
uint8 ERROR_YAW_ARG_ERROR = 2 | ||
uint8 ERROR_ANGLE_ERROR = 3 | ||
|
||
uint32 iTOW | ||
uint8 version | ||
uint8 flags | ||
uint8 errors | ||
uint8 reserved0 | ||
uint32 yaw # IMU-mount yaw angle [0, 360] | ||
int16 pitch # IMU-mount pitch angle [-90, 90] | ||
int16 roll # IMU-mount roll angle [-180, 180] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4f107f3
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Spelling of alignment is inconsistent.