|
@@ -6,34 +6,38 @@
|
|
|
|
|
|
|
|
typedef struct __mavlink_dtu_status_t {
|
|
typedef struct __mavlink_dtu_status_t {
|
|
|
uint8_t csq; /*< Receive signal strength indicator,Values: [0-254]*/
|
|
uint8_t csq; /*< Receive signal strength indicator,Values: [0-254]*/
|
|
|
|
|
+ uint8_t sn[32]; /*< Sim Card sn code.*/
|
|
|
uint8_t imei[32]; /*< Dtu board imei code.*/
|
|
uint8_t imei[32]; /*< Dtu board imei code.*/
|
|
|
} mavlink_dtu_status_t;
|
|
} mavlink_dtu_status_t;
|
|
|
|
|
|
|
|
-#define MAVLINK_MSG_ID_DTU_STATUS_LEN 33
|
|
|
|
|
-#define MAVLINK_MSG_ID_DTU_STATUS_MIN_LEN 33
|
|
|
|
|
-#define MAVLINK_MSG_ID_54010_LEN 33
|
|
|
|
|
-#define MAVLINK_MSG_ID_54010_MIN_LEN 33
|
|
|
|
|
|
|
+#define MAVLINK_MSG_ID_DTU_STATUS_LEN 65
|
|
|
|
|
+#define MAVLINK_MSG_ID_DTU_STATUS_MIN_LEN 65
|
|
|
|
|
+#define MAVLINK_MSG_ID_54010_LEN 65
|
|
|
|
|
+#define MAVLINK_MSG_ID_54010_MIN_LEN 65
|
|
|
|
|
|
|
|
-#define MAVLINK_MSG_ID_DTU_STATUS_CRC 59
|
|
|
|
|
-#define MAVLINK_MSG_ID_54010_CRC 59
|
|
|
|
|
|
|
+#define MAVLINK_MSG_ID_DTU_STATUS_CRC 100
|
|
|
|
|
+#define MAVLINK_MSG_ID_54010_CRC 100
|
|
|
|
|
|
|
|
|
|
+#define MAVLINK_MSG_DTU_STATUS_FIELD_SN_LEN 32
|
|
|
#define MAVLINK_MSG_DTU_STATUS_FIELD_IMEI_LEN 32
|
|
#define MAVLINK_MSG_DTU_STATUS_FIELD_IMEI_LEN 32
|
|
|
|
|
|
|
|
#if MAVLINK_COMMAND_24BIT
|
|
#if MAVLINK_COMMAND_24BIT
|
|
|
#define MAVLINK_MESSAGE_INFO_DTU_STATUS { \
|
|
#define MAVLINK_MESSAGE_INFO_DTU_STATUS { \
|
|
|
54010, \
|
|
54010, \
|
|
|
"DTU_STATUS", \
|
|
"DTU_STATUS", \
|
|
|
- 2, \
|
|
|
|
|
|
|
+ 3, \
|
|
|
{ { "csq", NULL, MAVLINK_TYPE_UINT8_T, 0, 0, offsetof(mavlink_dtu_status_t, csq) }, \
|
|
{ { "csq", NULL, MAVLINK_TYPE_UINT8_T, 0, 0, offsetof(mavlink_dtu_status_t, csq) }, \
|
|
|
- { "imei", NULL, MAVLINK_TYPE_UINT8_T, 32, 1, offsetof(mavlink_dtu_status_t, imei) }, \
|
|
|
|
|
|
|
+ { "sn", NULL, MAVLINK_TYPE_UINT8_T, 32, 1, offsetof(mavlink_dtu_status_t, sn) }, \
|
|
|
|
|
+ { "imei", NULL, MAVLINK_TYPE_UINT8_T, 32, 33, offsetof(mavlink_dtu_status_t, imei) }, \
|
|
|
} \
|
|
} \
|
|
|
}
|
|
}
|
|
|
#else
|
|
#else
|
|
|
#define MAVLINK_MESSAGE_INFO_DTU_STATUS { \
|
|
#define MAVLINK_MESSAGE_INFO_DTU_STATUS { \
|
|
|
"DTU_STATUS", \
|
|
"DTU_STATUS", \
|
|
|
- 2, \
|
|
|
|
|
|
|
+ 3, \
|
|
|
{ { "csq", NULL, MAVLINK_TYPE_UINT8_T, 0, 0, offsetof(mavlink_dtu_status_t, csq) }, \
|
|
{ { "csq", NULL, MAVLINK_TYPE_UINT8_T, 0, 0, offsetof(mavlink_dtu_status_t, csq) }, \
|
|
|
- { "imei", NULL, MAVLINK_TYPE_UINT8_T, 32, 1, offsetof(mavlink_dtu_status_t, imei) }, \
|
|
|
|
|
|
|
+ { "sn", NULL, MAVLINK_TYPE_UINT8_T, 32, 1, offsetof(mavlink_dtu_status_t, sn) }, \
|
|
|
|
|
+ { "imei", NULL, MAVLINK_TYPE_UINT8_T, 32, 33, offsetof(mavlink_dtu_status_t, imei) }, \
|
|
|
} \
|
|
} \
|
|
|
}
|
|
}
|
|
|
#endif
|
|
#endif
|
|
@@ -45,20 +49,23 @@ typedef struct __mavlink_dtu_status_t {
|
|
|
* @param msg The MAVLink message to compress the data into
|
|
* @param msg The MAVLink message to compress the data into
|
|
|
*
|
|
*
|
|
|
* @param csq Receive signal strength indicator,Values: [0-254]
|
|
* @param csq Receive signal strength indicator,Values: [0-254]
|
|
|
|
|
+ * @param sn Sim Card sn code.
|
|
|
* @param imei Dtu board imei code.
|
|
* @param imei Dtu board imei code.
|
|
|
* @return length of the message in bytes (excluding serial stream start sign)
|
|
* @return length of the message in bytes (excluding serial stream start sign)
|
|
|
*/
|
|
*/
|
|
|
static inline uint16_t mavlink_msg_dtu_status_pack(uint8_t system_id, uint8_t component_id, mavlink_message_t* msg,
|
|
static inline uint16_t mavlink_msg_dtu_status_pack(uint8_t system_id, uint8_t component_id, mavlink_message_t* msg,
|
|
|
- uint8_t csq, const uint8_t *imei)
|
|
|
|
|
|
|
+ uint8_t csq, const uint8_t *sn, const uint8_t *imei)
|
|
|
{
|
|
{
|
|
|
#if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
|
|
#if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
|
|
|
char buf[MAVLINK_MSG_ID_DTU_STATUS_LEN];
|
|
char buf[MAVLINK_MSG_ID_DTU_STATUS_LEN];
|
|
|
_mav_put_uint8_t(buf, 0, csq);
|
|
_mav_put_uint8_t(buf, 0, csq);
|
|
|
- _mav_put_uint8_t_array(buf, 1, imei, 32);
|
|
|
|
|
|
|
+ _mav_put_uint8_t_array(buf, 1, sn, 32);
|
|
|
|
|
+ _mav_put_uint8_t_array(buf, 33, imei, 32);
|
|
|
memcpy(_MAV_PAYLOAD_NON_CONST(msg), buf, MAVLINK_MSG_ID_DTU_STATUS_LEN);
|
|
memcpy(_MAV_PAYLOAD_NON_CONST(msg), buf, MAVLINK_MSG_ID_DTU_STATUS_LEN);
|
|
|
#else
|
|
#else
|
|
|
mavlink_dtu_status_t packet;
|
|
mavlink_dtu_status_t packet;
|
|
|
packet.csq = csq;
|
|
packet.csq = csq;
|
|
|
|
|
+ mav_array_memcpy(packet.sn, sn, sizeof(uint8_t)*32);
|
|
|
mav_array_memcpy(packet.imei, imei, sizeof(uint8_t)*32);
|
|
mav_array_memcpy(packet.imei, imei, sizeof(uint8_t)*32);
|
|
|
memcpy(_MAV_PAYLOAD_NON_CONST(msg), &packet, MAVLINK_MSG_ID_DTU_STATUS_LEN);
|
|
memcpy(_MAV_PAYLOAD_NON_CONST(msg), &packet, MAVLINK_MSG_ID_DTU_STATUS_LEN);
|
|
|
#endif
|
|
#endif
|
|
@@ -75,20 +82,23 @@ static inline uint16_t mavlink_msg_dtu_status_pack(uint8_t system_id, uint8_t co
|
|
|
* @param msg The MAVLink message to compress the data into
|
|
* @param msg The MAVLink message to compress the data into
|
|
|
*
|
|
*
|
|
|
* @param csq Receive signal strength indicator,Values: [0-254]
|
|
* @param csq Receive signal strength indicator,Values: [0-254]
|
|
|
|
|
+ * @param sn Sim Card sn code.
|
|
|
* @param imei Dtu board imei code.
|
|
* @param imei Dtu board imei code.
|
|
|
* @return length of the message in bytes (excluding serial stream start sign)
|
|
* @return length of the message in bytes (excluding serial stream start sign)
|
|
|
*/
|
|
*/
|
|
|
static inline uint16_t mavlink_msg_dtu_status_pack_status(uint8_t system_id, uint8_t component_id, mavlink_status_t *_status, mavlink_message_t* msg,
|
|
static inline uint16_t mavlink_msg_dtu_status_pack_status(uint8_t system_id, uint8_t component_id, mavlink_status_t *_status, mavlink_message_t* msg,
|
|
|
- uint8_t csq, const uint8_t *imei)
|
|
|
|
|
|
|
+ uint8_t csq, const uint8_t *sn, const uint8_t *imei)
|
|
|
{
|
|
{
|
|
|
#if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
|
|
#if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
|
|
|
char buf[MAVLINK_MSG_ID_DTU_STATUS_LEN];
|
|
char buf[MAVLINK_MSG_ID_DTU_STATUS_LEN];
|
|
|
_mav_put_uint8_t(buf, 0, csq);
|
|
_mav_put_uint8_t(buf, 0, csq);
|
|
|
- _mav_put_uint8_t_array(buf, 1, imei, 32);
|
|
|
|
|
|
|
+ _mav_put_uint8_t_array(buf, 1, sn, 32);
|
|
|
|
|
+ _mav_put_uint8_t_array(buf, 33, imei, 32);
|
|
|
memcpy(_MAV_PAYLOAD_NON_CONST(msg), buf, MAVLINK_MSG_ID_DTU_STATUS_LEN);
|
|
memcpy(_MAV_PAYLOAD_NON_CONST(msg), buf, MAVLINK_MSG_ID_DTU_STATUS_LEN);
|
|
|
#else
|
|
#else
|
|
|
mavlink_dtu_status_t packet;
|
|
mavlink_dtu_status_t packet;
|
|
|
packet.csq = csq;
|
|
packet.csq = csq;
|
|
|
|
|
+ mav_array_memcpy(packet.sn, sn, sizeof(uint8_t)*32);
|
|
|
mav_array_memcpy(packet.imei, imei, sizeof(uint8_t)*32);
|
|
mav_array_memcpy(packet.imei, imei, sizeof(uint8_t)*32);
|
|
|
memcpy(_MAV_PAYLOAD_NON_CONST(msg), &packet, MAVLINK_MSG_ID_DTU_STATUS_LEN);
|
|
memcpy(_MAV_PAYLOAD_NON_CONST(msg), &packet, MAVLINK_MSG_ID_DTU_STATUS_LEN);
|
|
|
#endif
|
|
#endif
|
|
@@ -108,21 +118,24 @@ static inline uint16_t mavlink_msg_dtu_status_pack_status(uint8_t system_id, uin
|
|
|
* @param chan The MAVLink channel this message will be sent over
|
|
* @param chan The MAVLink channel this message will be sent over
|
|
|
* @param msg The MAVLink message to compress the data into
|
|
* @param msg The MAVLink message to compress the data into
|
|
|
* @param csq Receive signal strength indicator,Values: [0-254]
|
|
* @param csq Receive signal strength indicator,Values: [0-254]
|
|
|
|
|
+ * @param sn Sim Card sn code.
|
|
|
* @param imei Dtu board imei code.
|
|
* @param imei Dtu board imei code.
|
|
|
* @return length of the message in bytes (excluding serial stream start sign)
|
|
* @return length of the message in bytes (excluding serial stream start sign)
|
|
|
*/
|
|
*/
|
|
|
static inline uint16_t mavlink_msg_dtu_status_pack_chan(uint8_t system_id, uint8_t component_id, uint8_t chan,
|
|
static inline uint16_t mavlink_msg_dtu_status_pack_chan(uint8_t system_id, uint8_t component_id, uint8_t chan,
|
|
|
mavlink_message_t* msg,
|
|
mavlink_message_t* msg,
|
|
|
- uint8_t csq,const uint8_t *imei)
|
|
|
|
|
|
|
+ uint8_t csq,const uint8_t *sn,const uint8_t *imei)
|
|
|
{
|
|
{
|
|
|
#if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
|
|
#if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
|
|
|
char buf[MAVLINK_MSG_ID_DTU_STATUS_LEN];
|
|
char buf[MAVLINK_MSG_ID_DTU_STATUS_LEN];
|
|
|
_mav_put_uint8_t(buf, 0, csq);
|
|
_mav_put_uint8_t(buf, 0, csq);
|
|
|
- _mav_put_uint8_t_array(buf, 1, imei, 32);
|
|
|
|
|
|
|
+ _mav_put_uint8_t_array(buf, 1, sn, 32);
|
|
|
|
|
+ _mav_put_uint8_t_array(buf, 33, imei, 32);
|
|
|
memcpy(_MAV_PAYLOAD_NON_CONST(msg), buf, MAVLINK_MSG_ID_DTU_STATUS_LEN);
|
|
memcpy(_MAV_PAYLOAD_NON_CONST(msg), buf, MAVLINK_MSG_ID_DTU_STATUS_LEN);
|
|
|
#else
|
|
#else
|
|
|
mavlink_dtu_status_t packet;
|
|
mavlink_dtu_status_t packet;
|
|
|
packet.csq = csq;
|
|
packet.csq = csq;
|
|
|
|
|
+ mav_array_memcpy(packet.sn, sn, sizeof(uint8_t)*32);
|
|
|
mav_array_memcpy(packet.imei, imei, sizeof(uint8_t)*32);
|
|
mav_array_memcpy(packet.imei, imei, sizeof(uint8_t)*32);
|
|
|
memcpy(_MAV_PAYLOAD_NON_CONST(msg), &packet, MAVLINK_MSG_ID_DTU_STATUS_LEN);
|
|
memcpy(_MAV_PAYLOAD_NON_CONST(msg), &packet, MAVLINK_MSG_ID_DTU_STATUS_LEN);
|
|
|
#endif
|
|
#endif
|
|
@@ -141,7 +154,7 @@ static inline uint16_t mavlink_msg_dtu_status_pack_chan(uint8_t system_id, uint8
|
|
|
*/
|
|
*/
|
|
|
static inline uint16_t mavlink_msg_dtu_status_encode(uint8_t system_id, uint8_t component_id, mavlink_message_t* msg, const mavlink_dtu_status_t* dtu_status)
|
|
static inline uint16_t mavlink_msg_dtu_status_encode(uint8_t system_id, uint8_t component_id, mavlink_message_t* msg, const mavlink_dtu_status_t* dtu_status)
|
|
|
{
|
|
{
|
|
|
- return mavlink_msg_dtu_status_pack(system_id, component_id, msg, dtu_status->csq, dtu_status->imei);
|
|
|
|
|
|
|
+ return mavlink_msg_dtu_status_pack(system_id, component_id, msg, dtu_status->csq, dtu_status->sn, dtu_status->imei);
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
/**
|
|
@@ -155,7 +168,7 @@ static inline uint16_t mavlink_msg_dtu_status_encode(uint8_t system_id, uint8_t
|
|
|
*/
|
|
*/
|
|
|
static inline uint16_t mavlink_msg_dtu_status_encode_chan(uint8_t system_id, uint8_t component_id, uint8_t chan, mavlink_message_t* msg, const mavlink_dtu_status_t* dtu_status)
|
|
static inline uint16_t mavlink_msg_dtu_status_encode_chan(uint8_t system_id, uint8_t component_id, uint8_t chan, mavlink_message_t* msg, const mavlink_dtu_status_t* dtu_status)
|
|
|
{
|
|
{
|
|
|
- return mavlink_msg_dtu_status_pack_chan(system_id, component_id, chan, msg, dtu_status->csq, dtu_status->imei);
|
|
|
|
|
|
|
+ return mavlink_msg_dtu_status_pack_chan(system_id, component_id, chan, msg, dtu_status->csq, dtu_status->sn, dtu_status->imei);
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
/**
|
|
@@ -169,7 +182,7 @@ static inline uint16_t mavlink_msg_dtu_status_encode_chan(uint8_t system_id, uin
|
|
|
*/
|
|
*/
|
|
|
static inline uint16_t mavlink_msg_dtu_status_encode_status(uint8_t system_id, uint8_t component_id, mavlink_status_t* _status, mavlink_message_t* msg, const mavlink_dtu_status_t* dtu_status)
|
|
static inline uint16_t mavlink_msg_dtu_status_encode_status(uint8_t system_id, uint8_t component_id, mavlink_status_t* _status, mavlink_message_t* msg, const mavlink_dtu_status_t* dtu_status)
|
|
|
{
|
|
{
|
|
|
- return mavlink_msg_dtu_status_pack_status(system_id, component_id, _status, msg, dtu_status->csq, dtu_status->imei);
|
|
|
|
|
|
|
+ return mavlink_msg_dtu_status_pack_status(system_id, component_id, _status, msg, dtu_status->csq, dtu_status->sn, dtu_status->imei);
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
/**
|
|
@@ -177,20 +190,23 @@ static inline uint16_t mavlink_msg_dtu_status_encode_status(uint8_t system_id, u
|
|
|
* @param chan MAVLink channel to send the message
|
|
* @param chan MAVLink channel to send the message
|
|
|
*
|
|
*
|
|
|
* @param csq Receive signal strength indicator,Values: [0-254]
|
|
* @param csq Receive signal strength indicator,Values: [0-254]
|
|
|
|
|
+ * @param sn Sim Card sn code.
|
|
|
* @param imei Dtu board imei code.
|
|
* @param imei Dtu board imei code.
|
|
|
*/
|
|
*/
|
|
|
#ifdef MAVLINK_USE_CONVENIENCE_FUNCTIONS
|
|
#ifdef MAVLINK_USE_CONVENIENCE_FUNCTIONS
|
|
|
|
|
|
|
|
-static inline void mavlink_msg_dtu_status_send(mavlink_channel_t chan, uint8_t csq, const uint8_t *imei)
|
|
|
|
|
|
|
+static inline void mavlink_msg_dtu_status_send(mavlink_channel_t chan, uint8_t csq, const uint8_t *sn, const uint8_t *imei)
|
|
|
{
|
|
{
|
|
|
#if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
|
|
#if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
|
|
|
char buf[MAVLINK_MSG_ID_DTU_STATUS_LEN];
|
|
char buf[MAVLINK_MSG_ID_DTU_STATUS_LEN];
|
|
|
_mav_put_uint8_t(buf, 0, csq);
|
|
_mav_put_uint8_t(buf, 0, csq);
|
|
|
- _mav_put_uint8_t_array(buf, 1, imei, 32);
|
|
|
|
|
|
|
+ _mav_put_uint8_t_array(buf, 1, sn, 32);
|
|
|
|
|
+ _mav_put_uint8_t_array(buf, 33, imei, 32);
|
|
|
_mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_DTU_STATUS, buf, MAVLINK_MSG_ID_DTU_STATUS_MIN_LEN, MAVLINK_MSG_ID_DTU_STATUS_LEN, MAVLINK_MSG_ID_DTU_STATUS_CRC);
|
|
_mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_DTU_STATUS, buf, MAVLINK_MSG_ID_DTU_STATUS_MIN_LEN, MAVLINK_MSG_ID_DTU_STATUS_LEN, MAVLINK_MSG_ID_DTU_STATUS_CRC);
|
|
|
#else
|
|
#else
|
|
|
mavlink_dtu_status_t packet;
|
|
mavlink_dtu_status_t packet;
|
|
|
packet.csq = csq;
|
|
packet.csq = csq;
|
|
|
|
|
+ mav_array_memcpy(packet.sn, sn, sizeof(uint8_t)*32);
|
|
|
mav_array_memcpy(packet.imei, imei, sizeof(uint8_t)*32);
|
|
mav_array_memcpy(packet.imei, imei, sizeof(uint8_t)*32);
|
|
|
_mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_DTU_STATUS, (const char *)&packet, MAVLINK_MSG_ID_DTU_STATUS_MIN_LEN, MAVLINK_MSG_ID_DTU_STATUS_LEN, MAVLINK_MSG_ID_DTU_STATUS_CRC);
|
|
_mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_DTU_STATUS, (const char *)&packet, MAVLINK_MSG_ID_DTU_STATUS_MIN_LEN, MAVLINK_MSG_ID_DTU_STATUS_LEN, MAVLINK_MSG_ID_DTU_STATUS_CRC);
|
|
|
#endif
|
|
#endif
|
|
@@ -204,7 +220,7 @@ static inline void mavlink_msg_dtu_status_send(mavlink_channel_t chan, uint8_t c
|
|
|
static inline void mavlink_msg_dtu_status_send_struct(mavlink_channel_t chan, const mavlink_dtu_status_t* dtu_status)
|
|
static inline void mavlink_msg_dtu_status_send_struct(mavlink_channel_t chan, const mavlink_dtu_status_t* dtu_status)
|
|
|
{
|
|
{
|
|
|
#if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
|
|
#if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
|
|
|
- mavlink_msg_dtu_status_send(chan, dtu_status->csq, dtu_status->imei);
|
|
|
|
|
|
|
+ mavlink_msg_dtu_status_send(chan, dtu_status->csq, dtu_status->sn, dtu_status->imei);
|
|
|
#else
|
|
#else
|
|
|
_mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_DTU_STATUS, (const char *)dtu_status, MAVLINK_MSG_ID_DTU_STATUS_MIN_LEN, MAVLINK_MSG_ID_DTU_STATUS_LEN, MAVLINK_MSG_ID_DTU_STATUS_CRC);
|
|
_mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_DTU_STATUS, (const char *)dtu_status, MAVLINK_MSG_ID_DTU_STATUS_MIN_LEN, MAVLINK_MSG_ID_DTU_STATUS_LEN, MAVLINK_MSG_ID_DTU_STATUS_CRC);
|
|
|
#endif
|
|
#endif
|
|
@@ -218,16 +234,18 @@ static inline void mavlink_msg_dtu_status_send_struct(mavlink_channel_t chan, co
|
|
|
is usually the receive buffer for the channel, and allows a reply to an
|
|
is usually the receive buffer for the channel, and allows a reply to an
|
|
|
incoming message with minimum stack space usage.
|
|
incoming message with minimum stack space usage.
|
|
|
*/
|
|
*/
|
|
|
-static inline void mavlink_msg_dtu_status_send_buf(mavlink_message_t *msgbuf, mavlink_channel_t chan, uint8_t csq, const uint8_t *imei)
|
|
|
|
|
|
|
+static inline void mavlink_msg_dtu_status_send_buf(mavlink_message_t *msgbuf, mavlink_channel_t chan, uint8_t csq, const uint8_t *sn, const uint8_t *imei)
|
|
|
{
|
|
{
|
|
|
#if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
|
|
#if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
|
|
|
char *buf = (char *)msgbuf;
|
|
char *buf = (char *)msgbuf;
|
|
|
_mav_put_uint8_t(buf, 0, csq);
|
|
_mav_put_uint8_t(buf, 0, csq);
|
|
|
- _mav_put_uint8_t_array(buf, 1, imei, 32);
|
|
|
|
|
|
|
+ _mav_put_uint8_t_array(buf, 1, sn, 32);
|
|
|
|
|
+ _mav_put_uint8_t_array(buf, 33, imei, 32);
|
|
|
_mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_DTU_STATUS, buf, MAVLINK_MSG_ID_DTU_STATUS_MIN_LEN, MAVLINK_MSG_ID_DTU_STATUS_LEN, MAVLINK_MSG_ID_DTU_STATUS_CRC);
|
|
_mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_DTU_STATUS, buf, MAVLINK_MSG_ID_DTU_STATUS_MIN_LEN, MAVLINK_MSG_ID_DTU_STATUS_LEN, MAVLINK_MSG_ID_DTU_STATUS_CRC);
|
|
|
#else
|
|
#else
|
|
|
mavlink_dtu_status_t *packet = (mavlink_dtu_status_t *)msgbuf;
|
|
mavlink_dtu_status_t *packet = (mavlink_dtu_status_t *)msgbuf;
|
|
|
packet->csq = csq;
|
|
packet->csq = csq;
|
|
|
|
|
+ mav_array_memcpy(packet->sn, sn, sizeof(uint8_t)*32);
|
|
|
mav_array_memcpy(packet->imei, imei, sizeof(uint8_t)*32);
|
|
mav_array_memcpy(packet->imei, imei, sizeof(uint8_t)*32);
|
|
|
_mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_DTU_STATUS, (const char *)packet, MAVLINK_MSG_ID_DTU_STATUS_MIN_LEN, MAVLINK_MSG_ID_DTU_STATUS_LEN, MAVLINK_MSG_ID_DTU_STATUS_CRC);
|
|
_mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_DTU_STATUS, (const char *)packet, MAVLINK_MSG_ID_DTU_STATUS_MIN_LEN, MAVLINK_MSG_ID_DTU_STATUS_LEN, MAVLINK_MSG_ID_DTU_STATUS_CRC);
|
|
|
#endif
|
|
#endif
|
|
@@ -249,6 +267,16 @@ static inline uint8_t mavlink_msg_dtu_status_get_csq(const mavlink_message_t* ms
|
|
|
return _MAV_RETURN_uint8_t(msg, 0);
|
|
return _MAV_RETURN_uint8_t(msg, 0);
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
+/**
|
|
|
|
|
+ * @brief Get field sn from dtu_status message
|
|
|
|
|
+ *
|
|
|
|
|
+ * @return Sim Card sn code.
|
|
|
|
|
+ */
|
|
|
|
|
+static inline uint16_t mavlink_msg_dtu_status_get_sn(const mavlink_message_t* msg, uint8_t *sn)
|
|
|
|
|
+{
|
|
|
|
|
+ return _MAV_RETURN_uint8_t_array(msg, sn, 32, 1);
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
/**
|
|
/**
|
|
|
* @brief Get field imei from dtu_status message
|
|
* @brief Get field imei from dtu_status message
|
|
|
*
|
|
*
|
|
@@ -256,7 +284,7 @@ static inline uint8_t mavlink_msg_dtu_status_get_csq(const mavlink_message_t* ms
|
|
|
*/
|
|
*/
|
|
|
static inline uint16_t mavlink_msg_dtu_status_get_imei(const mavlink_message_t* msg, uint8_t *imei)
|
|
static inline uint16_t mavlink_msg_dtu_status_get_imei(const mavlink_message_t* msg, uint8_t *imei)
|
|
|
{
|
|
{
|
|
|
- return _MAV_RETURN_uint8_t_array(msg, imei, 32, 1);
|
|
|
|
|
|
|
+ return _MAV_RETURN_uint8_t_array(msg, imei, 32, 33);
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
/**
|
|
@@ -269,6 +297,7 @@ static inline void mavlink_msg_dtu_status_decode(const mavlink_message_t* msg, m
|
|
|
{
|
|
{
|
|
|
#if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
|
|
#if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
|
|
|
dtu_status->csq = mavlink_msg_dtu_status_get_csq(msg);
|
|
dtu_status->csq = mavlink_msg_dtu_status_get_csq(msg);
|
|
|
|
|
+ mavlink_msg_dtu_status_get_sn(msg, dtu_status->sn);
|
|
|
mavlink_msg_dtu_status_get_imei(msg, dtu_status->imei);
|
|
mavlink_msg_dtu_status_get_imei(msg, dtu_status->imei);
|
|
|
#else
|
|
#else
|
|
|
uint8_t len = msg->len < MAVLINK_MSG_ID_DTU_STATUS_LEN? msg->len : MAVLINK_MSG_ID_DTU_STATUS_LEN;
|
|
uint8_t len = msg->len < MAVLINK_MSG_ID_DTU_STATUS_LEN? msg->len : MAVLINK_MSG_ID_DTU_STATUS_LEN;
|