mavlink_defaults.h 438 B

12345678910111213141516171819202122
  1. #ifndef _MAVLINK_DEFAULTS_H
  2. #define _MAVLINK_DEFAULTS_H
  3. // This is normally dynamically generated as mavlink.h, but we just use the same settings for all native stacks
  4. #ifndef MAVLINK_STX
  5. #define MAVLINK_STX 254
  6. #endif
  7. #ifndef MAVLINK_ENDIAN
  8. #define MAVLINK_ENDIAN MAVLINK_LITTLE_ENDIAN
  9. #endif
  10. #ifndef MAVLINK_ALIGNED_FIELDS
  11. #define MAVLINK_ALIGNED_FIELDS 1
  12. #endif
  13. #ifndef MAVLINK_CRC_EXTRA
  14. #define MAVLINK_CRC_EXTRA 1
  15. #endif
  16. #endif