CoarseOrientation.uavcan 647 B

1234567891011121314151617181920
  1. #
  2. # Nested type.
  3. # Coarse, low-resolution 3D orientation represented as fixed axes in 16 bit.
  4. #
  5. # Roll, pitch, yaw angles in radians should be multiplied by
  6. # ANGLE_MULTIPLIER in order to convert them to the coarse representation.
  7. #
  8. # ANGLE_MULTIPLIER = NORM / PI
  9. #
  10. # Where NORM is 12, because it:
  11. # - Fits the maximum range of a signed 5 bit integer
  12. # - Allows to exactly represent the following angles:
  13. # 0, 15, 30, 45, 60, 75, 90, 105, 120, 135, 150, 165, 180, and negatives
  14. #
  15. float32 ANGLE_MULTIPLIER = 4.7746482927568605
  16. int5[3] fixed_axis_roll_pitch_yaw
  17. bool orientation_defined # False if the orientation is actually not defined