dronecan.remoteid.BasicID.h 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154
  1. #pragma once
  2. #include <stdbool.h>
  3. #include <stdint.h>
  4. #include <canard.h>
  5. #define DRONECAN_REMOTEID_BASICID_MAX_SIZE 44
  6. #define DRONECAN_REMOTEID_BASICID_SIGNATURE (0x5B1C624A8E4FC533ULL)
  7. #define DRONECAN_REMOTEID_BASICID_ID 20030
  8. #define DRONECAN_REMOTEID_BASICID_ODID_ID_TYPE_NONE 0
  9. #define DRONECAN_REMOTEID_BASICID_ODID_ID_TYPE_SERIAL_NUMBER 1
  10. #define DRONECAN_REMOTEID_BASICID_ODID_ID_TYPE_CAA_REGISTRATION_ID 2
  11. #define DRONECAN_REMOTEID_BASICID_ODID_ID_TYPE_UTM_ASSIGNED_UUID 3
  12. #define DRONECAN_REMOTEID_BASICID_ODID_ID_TYPE_SPECIFIC_SESSION_ID 4
  13. #define DRONECAN_REMOTEID_BASICID_ODID_UA_TYPE_NONE 0
  14. #define DRONECAN_REMOTEID_BASICID_ODID_UA_TYPE_AEROPLANE 1
  15. #define DRONECAN_REMOTEID_BASICID_ODID_UA_TYPE_HELICOPTER_OR_MULTIROTOR 2
  16. #define DRONECAN_REMOTEID_BASICID_ODID_UA_TYPE_GYROPLANE 3
  17. #define DRONECAN_REMOTEID_BASICID_ODID_UA_TYPE_HYBRID_LIFT 4
  18. #define DRONECAN_REMOTEID_BASICID_ODID_UA_TYPE_ORNITHOPTER 5
  19. #define DRONECAN_REMOTEID_BASICID_ODID_UA_TYPE_GLIDER 6
  20. #define DRONECAN_REMOTEID_BASICID_ODID_UA_TYPE_KITE 7
  21. #define DRONECAN_REMOTEID_BASICID_ODID_UA_TYPE_FREE_BALLOON 8
  22. #define DRONECAN_REMOTEID_BASICID_ODID_UA_TYPE_CAPTIVE_BALLOON 9
  23. #define DRONECAN_REMOTEID_BASICID_ODID_UA_TYPE_AIRSHIP 10
  24. #define DRONECAN_REMOTEID_BASICID_ODID_UA_TYPE_FREE_FALL_PARACHUTE 11
  25. #define DRONECAN_REMOTEID_BASICID_ODID_UA_TYPE_ROCKET 12
  26. #define DRONECAN_REMOTEID_BASICID_ODID_UA_TYPE_TETHERED_POWERED_AIRCRAFT 13
  27. #define DRONECAN_REMOTEID_BASICID_ODID_UA_TYPE_GROUND_OBSTACLE 14
  28. #define DRONECAN_REMOTEID_BASICID_ODID_UA_TYPE_OTHER 15
  29. #if defined(__cplusplus) && defined(DRONECAN_CXX_WRAPPERS)
  30. class dronecan_remoteid_BasicID_cxx_iface;
  31. #endif
  32. struct dronecan_remoteid_BasicID {
  33. #if defined(__cplusplus) && defined(DRONECAN_CXX_WRAPPERS)
  34. using cxx_iface = dronecan_remoteid_BasicID_cxx_iface;
  35. #endif
  36. struct { uint8_t len; uint8_t data[20]; }id_or_mac;
  37. uint8_t id_type;
  38. uint8_t ua_type;
  39. struct { uint8_t len; uint8_t data[20]; }uas_id;
  40. };
  41. #ifdef __cplusplus
  42. extern "C"
  43. {
  44. #endif
  45. uint32_t dronecan_remoteid_BasicID_encode(struct dronecan_remoteid_BasicID* msg, uint8_t* buffer
  46. #if CANARD_ENABLE_TAO_OPTION
  47. , bool tao
  48. #endif
  49. );
  50. bool dronecan_remoteid_BasicID_decode(const CanardRxTransfer* transfer, struct dronecan_remoteid_BasicID* msg);
  51. #if defined(CANARD_DSDLC_INTERNAL)
  52. static inline void _dronecan_remoteid_BasicID_encode(uint8_t* buffer, uint32_t* bit_ofs, struct dronecan_remoteid_BasicID* msg, bool tao);
  53. static inline bool _dronecan_remoteid_BasicID_decode(const CanardRxTransfer* transfer, uint32_t* bit_ofs, struct dronecan_remoteid_BasicID* msg, bool tao);
  54. void _dronecan_remoteid_BasicID_encode(uint8_t* buffer, uint32_t* bit_ofs, struct dronecan_remoteid_BasicID* msg, bool tao) {
  55. (void)buffer;
  56. (void)bit_ofs;
  57. (void)msg;
  58. (void)tao;
  59. #pragma GCC diagnostic push
  60. #pragma GCC diagnostic ignored "-Wtype-limits"
  61. const uint8_t id_or_mac_len = msg->id_or_mac.len > 20 ? 20 : msg->id_or_mac.len;
  62. #pragma GCC diagnostic pop
  63. canardEncodeScalar(buffer, *bit_ofs, 5, &id_or_mac_len);
  64. *bit_ofs += 5;
  65. for (size_t i=0; i < id_or_mac_len; i++) {
  66. canardEncodeScalar(buffer, *bit_ofs, 8, &msg->id_or_mac.data[i]);
  67. *bit_ofs += 8;
  68. }
  69. canardEncodeScalar(buffer, *bit_ofs, 8, &msg->id_type);
  70. *bit_ofs += 8;
  71. canardEncodeScalar(buffer, *bit_ofs, 8, &msg->ua_type);
  72. *bit_ofs += 8;
  73. #pragma GCC diagnostic push
  74. #pragma GCC diagnostic ignored "-Wtype-limits"
  75. const uint8_t uas_id_len = msg->uas_id.len > 20 ? 20 : msg->uas_id.len;
  76. #pragma GCC diagnostic pop
  77. if (!tao) {
  78. canardEncodeScalar(buffer, *bit_ofs, 5, &uas_id_len);
  79. *bit_ofs += 5;
  80. }
  81. for (size_t i=0; i < uas_id_len; i++) {
  82. canardEncodeScalar(buffer, *bit_ofs, 8, &msg->uas_id.data[i]);
  83. *bit_ofs += 8;
  84. }
  85. }
  86. /*
  87. decode dronecan_remoteid_BasicID, return true on failure, false on success
  88. */
  89. bool _dronecan_remoteid_BasicID_decode(const CanardRxTransfer* transfer, uint32_t* bit_ofs, struct dronecan_remoteid_BasicID* msg, bool tao) {
  90. (void)transfer;
  91. (void)bit_ofs;
  92. (void)msg;
  93. (void)tao;
  94. canardDecodeScalar(transfer, *bit_ofs, 5, false, &msg->id_or_mac.len);
  95. *bit_ofs += 5;
  96. #pragma GCC diagnostic push
  97. #pragma GCC diagnostic ignored "-Wtype-limits"
  98. if (msg->id_or_mac.len > 20) {
  99. return true; /* invalid value */
  100. }
  101. #pragma GCC diagnostic pop
  102. for (size_t i=0; i < msg->id_or_mac.len; i++) {
  103. canardDecodeScalar(transfer, *bit_ofs, 8, false, &msg->id_or_mac.data[i]);
  104. *bit_ofs += 8;
  105. }
  106. canardDecodeScalar(transfer, *bit_ofs, 8, false, &msg->id_type);
  107. *bit_ofs += 8;
  108. canardDecodeScalar(transfer, *bit_ofs, 8, false, &msg->ua_type);
  109. *bit_ofs += 8;
  110. if (!tao) {
  111. canardDecodeScalar(transfer, *bit_ofs, 5, false, &msg->uas_id.len);
  112. *bit_ofs += 5;
  113. } else {
  114. msg->uas_id.len = ((transfer->payload_len*8)-*bit_ofs)/8;
  115. }
  116. #pragma GCC diagnostic push
  117. #pragma GCC diagnostic ignored "-Wtype-limits"
  118. if (msg->uas_id.len > 20) {
  119. return true; /* invalid value */
  120. }
  121. #pragma GCC diagnostic pop
  122. for (size_t i=0; i < msg->uas_id.len; i++) {
  123. canardDecodeScalar(transfer, *bit_ofs, 8, false, &msg->uas_id.data[i]);
  124. *bit_ofs += 8;
  125. }
  126. return false; /* success */
  127. }
  128. #endif
  129. #ifdef CANARD_DSDLC_TEST_BUILD
  130. struct dronecan_remoteid_BasicID sample_dronecan_remoteid_BasicID_msg(void);
  131. #endif
  132. #ifdef __cplusplus
  133. } // extern "C"
  134. #ifdef DRONECAN_CXX_WRAPPERS
  135. #include <canard/cxx_wrappers.h>
  136. BROADCAST_MESSAGE_CXX_IFACE(dronecan_remoteid_BasicID, DRONECAN_REMOTEID_BASICID_ID, DRONECAN_REMOTEID_BASICID_SIGNATURE, DRONECAN_REMOTEID_BASICID_MAX_SIZE);
  137. #endif
  138. #endif