@aircast-4g/mavlink 1.1.11 → 1.1.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/dialects/ardupilotmega/index.d.ts +336 -245
- package/dist/dialects/ardupilotmega/index.js +1155 -897
- package/dist/dialects/ardupilotmega/index.js.map +1 -1
- package/dist/dialects/common/index.d.ts +302 -221
- package/dist/dialects/common/index.js +1019 -787
- package/dist/dialects/common/index.js.map +1 -1
- package/dist/dialects/minimal/index.d.ts +9 -14
- package/dist/dialects/minimal/index.js +59 -39
- package/dist/dialects/minimal/index.js.map +1 -1
- package/dist/dialects/paparazzi/index.d.ts +303 -222
- package/dist/dialects/paparazzi/index.js +1022 -790
- package/dist/dialects/paparazzi/index.js.map +1 -1
- package/dist/dialects/python_array_test/index.d.ts +308 -227
- package/dist/dialects/python_array_test/index.js +1038 -806
- package/dist/dialects/python_array_test/index.js.map +1 -1
- package/dist/dialects/standard/index.d.ts +72 -12
- package/dist/dialects/standard/index.js +213 -20
- package/dist/dialects/standard/index.js.map +1 -1
- package/dist/dialects/test/index.d.ts +13 -11
- package/dist/dialects/test/index.js +88 -44
- package/dist/dialects/test/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -148,6 +148,8 @@ var MAV_TYPEEnum;
|
|
|
148
148
|
MAV_TYPEEnum[MAV_TYPEEnum["MAV_TYPE_VTOL_GYRODYNE"] = 47] = "MAV_TYPE_VTOL_GYRODYNE";
|
|
149
149
|
// Gripper
|
|
150
150
|
MAV_TYPEEnum[MAV_TYPEEnum["MAV_TYPE_GRIPPER"] = 48] = "MAV_TYPE_GRIPPER";
|
|
151
|
+
// Radio
|
|
152
|
+
MAV_TYPEEnum[MAV_TYPEEnum["MAV_TYPE_RADIO"] = 49] = "MAV_TYPE_RADIO";
|
|
151
153
|
})(MAV_TYPEEnum || (MAV_TYPEEnum = {}));
|
|
152
154
|
// These flags encode the MAV mode, see MAV_MODE enum for useful combinations.
|
|
153
155
|
var MAV_MODE_FLAGEnum;
|
|
@@ -386,6 +388,12 @@ var MAV_COMPONENTEnum;
|
|
|
386
388
|
MAV_COMPONENTEnum[MAV_COMPONENTEnum["MAV_COMP_ID_CAMERA5"] = 104] = "MAV_COMP_ID_CAMERA5";
|
|
387
389
|
// Camera #6.
|
|
388
390
|
MAV_COMPONENTEnum[MAV_COMPONENTEnum["MAV_COMP_ID_CAMERA6"] = 105] = "MAV_COMP_ID_CAMERA6";
|
|
391
|
+
// Radio #1.
|
|
392
|
+
MAV_COMPONENTEnum[MAV_COMPONENTEnum["MAV_COMP_ID_RADIO"] = 110] = "MAV_COMP_ID_RADIO";
|
|
393
|
+
// Radio #2.
|
|
394
|
+
MAV_COMPONENTEnum[MAV_COMPONENTEnum["MAV_COMP_ID_RADIO2"] = 111] = "MAV_COMP_ID_RADIO2";
|
|
395
|
+
// Radio #3.
|
|
396
|
+
MAV_COMPONENTEnum[MAV_COMPONENTEnum["MAV_COMP_ID_RADIO3"] = 112] = "MAV_COMP_ID_RADIO3";
|
|
389
397
|
// Servo #1.
|
|
390
398
|
MAV_COMPONENTEnum[MAV_COMPONENTEnum["MAV_COMP_ID_SERVO1"] = 140] = "MAV_COMP_ID_SERVO1";
|
|
391
399
|
// Servo #2.
|
|
@@ -501,6 +509,56 @@ var MAV_BOOLEnum;
|
|
|
501
509
|
// True.
|
|
502
510
|
MAV_BOOLEnum[MAV_BOOLEnum["MAV_BOOL_TRUE"] = 1] = "MAV_BOOL_TRUE";
|
|
503
511
|
})(MAV_BOOLEnum || (MAV_BOOLEnum = {}));
|
|
512
|
+
// Bitmask of (optional) autopilot capabilities (64 bit). If a bit is set, the autopilot supports this capability.
|
|
513
|
+
var MAV_PROTOCOL_CAPABILITYEnum;
|
|
514
|
+
(function (MAV_PROTOCOL_CAPABILITYEnum) {
|
|
515
|
+
// Autopilot supports the MISSION_ITEM float message type.
|
|
516
|
+
// Note that MISSION_ITEM is deprecated, and autopilots should use MISSION_ITEM_INT instead.
|
|
517
|
+
MAV_PROTOCOL_CAPABILITYEnum[MAV_PROTOCOL_CAPABILITYEnum["MAV_PROTOCOL_CAPABILITY_MISSION_FLOAT"] = 1] = "MAV_PROTOCOL_CAPABILITY_MISSION_FLOAT";
|
|
518
|
+
// Autopilot supports the new param float message type.
|
|
519
|
+
MAV_PROTOCOL_CAPABILITYEnum[MAV_PROTOCOL_CAPABILITYEnum["MAV_PROTOCOL_CAPABILITY_PARAM_FLOAT"] = 2] = "MAV_PROTOCOL_CAPABILITY_PARAM_FLOAT";
|
|
520
|
+
// Autopilot supports MISSION_ITEM_INT scaled integer message type.
|
|
521
|
+
// Note that this flag must always be set if missions are supported, because missions must always use MISSION_ITEM_INT (rather than MISSION_ITEM, which is deprecated).
|
|
522
|
+
MAV_PROTOCOL_CAPABILITYEnum[MAV_PROTOCOL_CAPABILITYEnum["MAV_PROTOCOL_CAPABILITY_MISSION_INT"] = 4] = "MAV_PROTOCOL_CAPABILITY_MISSION_INT";
|
|
523
|
+
// Autopilot supports COMMAND_INT scaled integer message type.
|
|
524
|
+
MAV_PROTOCOL_CAPABILITYEnum[MAV_PROTOCOL_CAPABILITYEnum["MAV_PROTOCOL_CAPABILITY_COMMAND_INT"] = 8] = "MAV_PROTOCOL_CAPABILITY_COMMAND_INT";
|
|
525
|
+
// Parameter protocol uses byte-wise encoding of parameter values into param_value (float) fields: https://mavlink.io/en/services/parameter.html#parameter-encoding.
|
|
526
|
+
// Note that either this flag or MAV_PROTOCOL_CAPABILITY_PARAM_ENCODE_C_CAST should be set if the parameter protocol is supported.
|
|
527
|
+
MAV_PROTOCOL_CAPABILITYEnum[MAV_PROTOCOL_CAPABILITYEnum["MAV_PROTOCOL_CAPABILITY_PARAM_ENCODE_BYTEWISE"] = 16] = "MAV_PROTOCOL_CAPABILITY_PARAM_ENCODE_BYTEWISE";
|
|
528
|
+
// Autopilot supports the File Transfer Protocol v1: https://mavlink.io/en/services/ftp.html.
|
|
529
|
+
MAV_PROTOCOL_CAPABILITYEnum[MAV_PROTOCOL_CAPABILITYEnum["MAV_PROTOCOL_CAPABILITY_FTP"] = 32] = "MAV_PROTOCOL_CAPABILITY_FTP";
|
|
530
|
+
// Autopilot supports commanding attitude offboard.
|
|
531
|
+
MAV_PROTOCOL_CAPABILITYEnum[MAV_PROTOCOL_CAPABILITYEnum["MAV_PROTOCOL_CAPABILITY_SET_ATTITUDE_TARGET"] = 64] = "MAV_PROTOCOL_CAPABILITY_SET_ATTITUDE_TARGET";
|
|
532
|
+
// Autopilot supports commanding position and velocity targets in local NED frame.
|
|
533
|
+
MAV_PROTOCOL_CAPABILITYEnum[MAV_PROTOCOL_CAPABILITYEnum["MAV_PROTOCOL_CAPABILITY_SET_POSITION_TARGET_LOCAL_NED"] = 128] = "MAV_PROTOCOL_CAPABILITY_SET_POSITION_TARGET_LOCAL_NED";
|
|
534
|
+
// Autopilot supports commanding position and velocity targets in global scaled integers.
|
|
535
|
+
MAV_PROTOCOL_CAPABILITYEnum[MAV_PROTOCOL_CAPABILITYEnum["MAV_PROTOCOL_CAPABILITY_SET_POSITION_TARGET_GLOBAL_INT"] = 256] = "MAV_PROTOCOL_CAPABILITY_SET_POSITION_TARGET_GLOBAL_INT";
|
|
536
|
+
// Autopilot supports terrain protocol / data handling.
|
|
537
|
+
MAV_PROTOCOL_CAPABILITYEnum[MAV_PROTOCOL_CAPABILITYEnum["MAV_PROTOCOL_CAPABILITY_TERRAIN"] = 512] = "MAV_PROTOCOL_CAPABILITY_TERRAIN";
|
|
538
|
+
// Reserved for future use.
|
|
539
|
+
MAV_PROTOCOL_CAPABILITYEnum[MAV_PROTOCOL_CAPABILITYEnum["MAV_PROTOCOL_CAPABILITY_RESERVED3"] = 1024] = "MAV_PROTOCOL_CAPABILITY_RESERVED3";
|
|
540
|
+
// Autopilot supports the MAV_CMD_DO_FLIGHTTERMINATION command (flight termination).
|
|
541
|
+
MAV_PROTOCOL_CAPABILITYEnum[MAV_PROTOCOL_CAPABILITYEnum["MAV_PROTOCOL_CAPABILITY_FLIGHT_TERMINATION"] = 2048] = "MAV_PROTOCOL_CAPABILITY_FLIGHT_TERMINATION";
|
|
542
|
+
// Autopilot supports onboard compass calibration.
|
|
543
|
+
MAV_PROTOCOL_CAPABILITYEnum[MAV_PROTOCOL_CAPABILITYEnum["MAV_PROTOCOL_CAPABILITY_COMPASS_CALIBRATION"] = 4096] = "MAV_PROTOCOL_CAPABILITY_COMPASS_CALIBRATION";
|
|
544
|
+
// Autopilot supports MAVLink version 2.
|
|
545
|
+
MAV_PROTOCOL_CAPABILITYEnum[MAV_PROTOCOL_CAPABILITYEnum["MAV_PROTOCOL_CAPABILITY_MAVLINK2"] = 8192] = "MAV_PROTOCOL_CAPABILITY_MAVLINK2";
|
|
546
|
+
// Autopilot supports mission fence protocol.
|
|
547
|
+
MAV_PROTOCOL_CAPABILITYEnum[MAV_PROTOCOL_CAPABILITYEnum["MAV_PROTOCOL_CAPABILITY_MISSION_FENCE"] = 16384] = "MAV_PROTOCOL_CAPABILITY_MISSION_FENCE";
|
|
548
|
+
// Autopilot supports mission rally point protocol.
|
|
549
|
+
MAV_PROTOCOL_CAPABILITYEnum[MAV_PROTOCOL_CAPABILITYEnum["MAV_PROTOCOL_CAPABILITY_MISSION_RALLY"] = 32768] = "MAV_PROTOCOL_CAPABILITY_MISSION_RALLY";
|
|
550
|
+
// Reserved for future use.
|
|
551
|
+
MAV_PROTOCOL_CAPABILITYEnum[MAV_PROTOCOL_CAPABILITYEnum["MAV_PROTOCOL_CAPABILITY_RESERVED2"] = 65536] = "MAV_PROTOCOL_CAPABILITY_RESERVED2";
|
|
552
|
+
// Parameter protocol uses C-cast of parameter values to set the param_value (float) fields: https://mavlink.io/en/services/parameter.html#parameter-encoding.
|
|
553
|
+
// Note that either this flag or MAV_PROTOCOL_CAPABILITY_PARAM_ENCODE_BYTEWISE should be set if the parameter protocol is supported.
|
|
554
|
+
MAV_PROTOCOL_CAPABILITYEnum[MAV_PROTOCOL_CAPABILITYEnum["MAV_PROTOCOL_CAPABILITY_PARAM_ENCODE_C_CAST"] = 131072] = "MAV_PROTOCOL_CAPABILITY_PARAM_ENCODE_C_CAST";
|
|
555
|
+
// This component implements/is a gimbal manager. This means the GIMBAL_MANAGER_INFORMATION, and other messages can be requested.
|
|
556
|
+
MAV_PROTOCOL_CAPABILITYEnum[MAV_PROTOCOL_CAPABILITYEnum["MAV_PROTOCOL_CAPABILITY_COMPONENT_IMPLEMENTS_GIMBAL_MANAGER"] = 262144] = "MAV_PROTOCOL_CAPABILITY_COMPONENT_IMPLEMENTS_GIMBAL_MANAGER";
|
|
557
|
+
// Component supports locking control to a particular GCS independent of its system (via MAV_CMD_REQUEST_OPERATOR_CONTROL).
|
|
558
|
+
MAV_PROTOCOL_CAPABILITYEnum[MAV_PROTOCOL_CAPABILITYEnum["MAV_PROTOCOL_CAPABILITY_COMPONENT_ACCEPTS_GCS_CONTROL"] = 524288] = "MAV_PROTOCOL_CAPABILITY_COMPONENT_ACCEPTS_GCS_CONTROL";
|
|
559
|
+
// Autopilot has a connected gripper. MAVLink Grippers would set MAV_TYPE_GRIPPER instead.
|
|
560
|
+
MAV_PROTOCOL_CAPABILITYEnum[MAV_PROTOCOL_CAPABILITYEnum["MAV_PROTOCOL_CAPABILITY_GRIPPER"] = 1048576] = "MAV_PROTOCOL_CAPABILITY_GRIPPER";
|
|
561
|
+
})(MAV_PROTOCOL_CAPABILITYEnum || (MAV_PROTOCOL_CAPABILITYEnum = {}));
|
|
504
562
|
// These values define the type of firmware release. These values indicate the first version or release of this type. For example the first alpha release would be 64, the second would be 65.
|
|
505
563
|
var FIRMWARE_VERSION_TYPEEnum;
|
|
506
564
|
(function (FIRMWARE_VERSION_TYPEEnum) {
|
|
@@ -927,6 +985,8 @@ var GRIPPER_ACTIONSEnum;
|
|
|
927
985
|
GRIPPER_ACTIONSEnum[GRIPPER_ACTIONSEnum["GRIPPER_ACTION_RELEASE"] = 0] = "GRIPPER_ACTION_RELEASE";
|
|
928
986
|
// Gripper grab onto cargo.
|
|
929
987
|
GRIPPER_ACTIONSEnum[GRIPPER_ACTIONSEnum["GRIPPER_ACTION_GRAB"] = 1] = "GRIPPER_ACTION_GRAB";
|
|
988
|
+
// Gripper hold current grip state/position.
|
|
989
|
+
GRIPPER_ACTIONSEnum[GRIPPER_ACTIONSEnum["GRIPPER_ACTION_HOLD"] = 2] = "GRIPPER_ACTION_HOLD";
|
|
930
990
|
})(GRIPPER_ACTIONSEnum || (GRIPPER_ACTIONSEnum = {}));
|
|
931
991
|
// Winch actions.
|
|
932
992
|
var WINCH_ACTIONSEnum;
|
|
@@ -1255,6 +1315,20 @@ var PREFLIGHT_STORAGE_MISSION_ACTIONEnum;
|
|
|
1255
1315
|
// Erase all mission data stored on the vehicle (both persistent and volatile storage)
|
|
1256
1316
|
PREFLIGHT_STORAGE_MISSION_ACTIONEnum[PREFLIGHT_STORAGE_MISSION_ACTIONEnum["MISSION_RESET_DEFAULT"] = 2] = "MISSION_RESET_DEFAULT";
|
|
1257
1317
|
})(PREFLIGHT_STORAGE_MISSION_ACTIONEnum || (PREFLIGHT_STORAGE_MISSION_ACTIONEnum = {}));
|
|
1318
|
+
// Reboot/shutdown action for selected component in MAV_CMD_PREFLIGHT_REBOOT_SHUTDOWN.
|
|
1319
|
+
var REBOOT_SHUTDOWN_ACTIONEnum;
|
|
1320
|
+
(function (REBOOT_SHUTDOWN_ACTIONEnum) {
|
|
1321
|
+
// Do nothing.
|
|
1322
|
+
REBOOT_SHUTDOWN_ACTIONEnum[REBOOT_SHUTDOWN_ACTIONEnum["REBOOT_SHUTDOWN_ACTION_NONE"] = 0] = "REBOOT_SHUTDOWN_ACTION_NONE";
|
|
1323
|
+
// Reboot component.
|
|
1324
|
+
REBOOT_SHUTDOWN_ACTIONEnum[REBOOT_SHUTDOWN_ACTIONEnum["REBOOT_SHUTDOWN_ACTION_REBOOT"] = 1] = "REBOOT_SHUTDOWN_ACTION_REBOOT";
|
|
1325
|
+
// Shutdown component.
|
|
1326
|
+
REBOOT_SHUTDOWN_ACTIONEnum[REBOOT_SHUTDOWN_ACTIONEnum["REBOOT_SHUTDOWN_ACTION_SHUTDOWN"] = 2] = "REBOOT_SHUTDOWN_ACTION_SHUTDOWN";
|
|
1327
|
+
// Reboot component and keep it in the bootloader until upgraded.
|
|
1328
|
+
REBOOT_SHUTDOWN_ACTIONEnum[REBOOT_SHUTDOWN_ACTIONEnum["REBOOT_SHUTDOWN_ACTION_REBOOT_TO_BOOTLOADER"] = 3] = "REBOOT_SHUTDOWN_ACTION_REBOOT_TO_BOOTLOADER";
|
|
1329
|
+
// Power on component. Do nothing if component is already powered (ACK command with MAV_RESULT_ACCEPTED).
|
|
1330
|
+
REBOOT_SHUTDOWN_ACTIONEnum[REBOOT_SHUTDOWN_ACTIONEnum["REBOOT_SHUTDOWN_ACTION_POWER_ON"] = 4] = "REBOOT_SHUTDOWN_ACTION_POWER_ON";
|
|
1331
|
+
})(REBOOT_SHUTDOWN_ACTIONEnum || (REBOOT_SHUTDOWN_ACTIONEnum = {}));
|
|
1258
1332
|
// Specifies the conditions under which the MAV_CMD_PREFLIGHT_REBOOT_SHUTDOWN command should be accepted.
|
|
1259
1333
|
var REBOOT_SHUTDOWN_CONDITIONSEnum;
|
|
1260
1334
|
(function (REBOOT_SHUTDOWN_CONDITIONSEnum) {
|
|
@@ -1296,6 +1370,12 @@ var MAV_CMDEnum;
|
|
|
1296
1370
|
MAV_CMDEnum[MAV_CMDEnum["MAV_CMD_DO_FOLLOW_REPOSITION"] = 33] = "MAV_CMD_DO_FOLLOW_REPOSITION";
|
|
1297
1371
|
// Start orbiting on the circumference of a circle defined by the parameters. Setting values to NaN/INT32_MAX (as appropriate) results in using defaults.
|
|
1298
1372
|
MAV_CMDEnum[MAV_CMDEnum["MAV_CMD_DO_ORBIT"] = 34] = "MAV_CMD_DO_ORBIT";
|
|
1373
|
+
// Fly a figure eight path as defined by the parameters.
|
|
1374
|
+
// Set parameters to NaN/INT32_MAX (as appropriate) to use system-default values.
|
|
1375
|
+
// The command is intended for fixed wing vehicles (and VTOL hybrids flying in fixed-wing mode), allowing POI tracking for gimbals that don't support infinite rotation.
|
|
1376
|
+
// This command only defines the flight path. Speed should be set independently (use e.g. MAV_CMD_DO_CHANGE_SPEED).
|
|
1377
|
+
// Yaw and other degrees of freedom are not specified, and will be flight-stack specific (on vehicles where they can be controlled independent of the heading).
|
|
1378
|
+
MAV_CMDEnum[MAV_CMDEnum["MAV_CMD_DO_FIGURE_EIGHT"] = 35] = "MAV_CMD_DO_FIGURE_EIGHT";
|
|
1299
1379
|
// Sets the region of interest (ROI) for a sensor set or the vehicle itself. This can then be used by the vehicle's control system to control the vehicle attitude and the attitude of various sensors such as cameras.
|
|
1300
1380
|
MAV_CMDEnum[MAV_CMDEnum["MAV_CMD_NAV_ROI"] = 80] = "MAV_CMD_NAV_ROI";
|
|
1301
1381
|
// Control autonomous path planning on the MAV.
|
|
@@ -1730,6 +1810,28 @@ var MAV_PARAM_TYPEEnum;
|
|
|
1730
1810
|
// 64-bit floating-point
|
|
1731
1811
|
MAV_PARAM_TYPEEnum[MAV_PARAM_TYPEEnum["MAV_PARAM_TYPE_REAL64"] = 10] = "MAV_PARAM_TYPE_REAL64";
|
|
1732
1812
|
})(MAV_PARAM_TYPEEnum || (MAV_PARAM_TYPEEnum = {}));
|
|
1813
|
+
// Parameter protocol error types (see PARAM_ERROR).
|
|
1814
|
+
var MAV_PARAM_ERROREnum;
|
|
1815
|
+
(function (MAV_PARAM_ERROREnum) {
|
|
1816
|
+
// No error occurred (not expected in PARAM_ERROR but may be used in future implementations.
|
|
1817
|
+
MAV_PARAM_ERROREnum[MAV_PARAM_ERROREnum["MAV_PARAM_ERROR_NO_ERROR"] = 0] = "MAV_PARAM_ERROR_NO_ERROR";
|
|
1818
|
+
// Parameter does not exist
|
|
1819
|
+
MAV_PARAM_ERROREnum[MAV_PARAM_ERROREnum["MAV_PARAM_ERROR_DOES_NOT_EXIST"] = 1] = "MAV_PARAM_ERROR_DOES_NOT_EXIST";
|
|
1820
|
+
// Parameter value does not fit within accepted range
|
|
1821
|
+
MAV_PARAM_ERROREnum[MAV_PARAM_ERROREnum["MAV_PARAM_ERROR_VALUE_OUT_OF_RANGE"] = 2] = "MAV_PARAM_ERROR_VALUE_OUT_OF_RANGE";
|
|
1822
|
+
// Caller is not permitted to set the value of this parameter
|
|
1823
|
+
MAV_PARAM_ERROREnum[MAV_PARAM_ERROREnum["MAV_PARAM_ERROR_PERMISSION_DENIED"] = 3] = "MAV_PARAM_ERROR_PERMISSION_DENIED";
|
|
1824
|
+
// Unknown component specified
|
|
1825
|
+
MAV_PARAM_ERROREnum[MAV_PARAM_ERROREnum["MAV_PARAM_ERROR_COMPONENT_NOT_FOUND"] = 4] = "MAV_PARAM_ERROR_COMPONENT_NOT_FOUND";
|
|
1826
|
+
// Parameter is read-only
|
|
1827
|
+
MAV_PARAM_ERROREnum[MAV_PARAM_ERROREnum["MAV_PARAM_ERROR_READ_ONLY"] = 5] = "MAV_PARAM_ERROR_READ_ONLY";
|
|
1828
|
+
// Parameter data type (MAV_PARAM_TYPE) is not supported by flight stack (at all)
|
|
1829
|
+
MAV_PARAM_ERROREnum[MAV_PARAM_ERROREnum["MAV_PARAM_ERROR_TYPE_UNSUPPORTED"] = 6] = "MAV_PARAM_ERROR_TYPE_UNSUPPORTED";
|
|
1830
|
+
// Parameter type does not match expected type
|
|
1831
|
+
MAV_PARAM_ERROREnum[MAV_PARAM_ERROREnum["MAV_PARAM_ERROR_TYPE_MISMATCH"] = 7] = "MAV_PARAM_ERROR_TYPE_MISMATCH";
|
|
1832
|
+
// Parameter exists but reading failed
|
|
1833
|
+
MAV_PARAM_ERROREnum[MAV_PARAM_ERROREnum["MAV_PARAM_ERROR_READ_FAIL"] = 8] = "MAV_PARAM_ERROR_READ_FAIL";
|
|
1834
|
+
})(MAV_PARAM_ERROREnum || (MAV_PARAM_ERROREnum = {}));
|
|
1733
1835
|
// Specifies the datatype of a MAVLink extended parameter.
|
|
1734
1836
|
var MAV_PARAM_EXT_TYPEEnum;
|
|
1735
1837
|
(function (MAV_PARAM_EXT_TYPEEnum) {
|
|
@@ -1763,7 +1865,7 @@ var MAV_RESULTEnum;
|
|
|
1763
1865
|
MAV_RESULTEnum[MAV_RESULTEnum["MAV_RESULT_ACCEPTED"] = 0] = "MAV_RESULT_ACCEPTED";
|
|
1764
1866
|
// Command is valid, but cannot be executed at this time. This is used to indicate a problem that should be fixed just by waiting (e.g. a state machine is busy, can't arm because have not got GPS lock, etc.). Retrying later should work.
|
|
1765
1867
|
MAV_RESULTEnum[MAV_RESULTEnum["MAV_RESULT_TEMPORARILY_REJECTED"] = 1] = "MAV_RESULT_TEMPORARILY_REJECTED";
|
|
1766
|
-
// Command is invalid
|
|
1868
|
+
// Command is invalid; it is supported but one or more parameter values are invalid (i.e. parameter reserved, value allowed by spec but not supported by flight stack, and so on). Retrying the same command and parameters will not work.
|
|
1767
1869
|
MAV_RESULTEnum[MAV_RESULTEnum["MAV_RESULT_DENIED"] = 2] = "MAV_RESULT_DENIED";
|
|
1768
1870
|
// Command is not supported (unknown).
|
|
1769
1871
|
MAV_RESULTEnum[MAV_RESULTEnum["MAV_RESULT_UNSUPPORTED"] = 3] = "MAV_RESULT_UNSUPPORTED";
|
|
@@ -1779,6 +1881,8 @@ var MAV_RESULTEnum;
|
|
|
1779
1881
|
MAV_RESULTEnum[MAV_RESULTEnum["MAV_RESULT_COMMAND_INT_ONLY"] = 8] = "MAV_RESULT_COMMAND_INT_ONLY";
|
|
1780
1882
|
// Command is invalid because a frame is required and the specified frame is not supported.
|
|
1781
1883
|
MAV_RESULTEnum[MAV_RESULTEnum["MAV_RESULT_COMMAND_UNSUPPORTED_MAV_FRAME"] = 9] = "MAV_RESULT_COMMAND_UNSUPPORTED_MAV_FRAME";
|
|
1884
|
+
// Command has been rejected because source system is not in control of the target system/component.
|
|
1885
|
+
MAV_RESULTEnum[MAV_RESULTEnum["MAV_RESULT_NOT_IN_CONTROL"] = 10] = "MAV_RESULT_NOT_IN_CONTROL";
|
|
1782
1886
|
})(MAV_RESULTEnum || (MAV_RESULTEnum = {}));
|
|
1783
1887
|
// Result of mission operation (in a MISSION_ACK message).
|
|
1784
1888
|
var MAV_MISSION_RESULTEnum;
|
|
@@ -2002,56 +2106,6 @@ var MAV_SENSOR_ORIENTATIONEnum;
|
|
|
2002
2106
|
// Custom orientation
|
|
2003
2107
|
MAV_SENSOR_ORIENTATIONEnum[MAV_SENSOR_ORIENTATIONEnum["MAV_SENSOR_ROTATION_CUSTOM"] = 100] = "MAV_SENSOR_ROTATION_CUSTOM";
|
|
2004
2108
|
})(MAV_SENSOR_ORIENTATIONEnum || (MAV_SENSOR_ORIENTATIONEnum = {}));
|
|
2005
|
-
// Bitmask of (optional) autopilot capabilities (64 bit). If a bit is set, the autopilot supports this capability.
|
|
2006
|
-
var MAV_PROTOCOL_CAPABILITYEnum;
|
|
2007
|
-
(function (MAV_PROTOCOL_CAPABILITYEnum) {
|
|
2008
|
-
// Autopilot supports the MISSION_ITEM float message type.
|
|
2009
|
-
// Note that MISSION_ITEM is deprecated, and autopilots should use MISSION_INT instead.
|
|
2010
|
-
MAV_PROTOCOL_CAPABILITYEnum[MAV_PROTOCOL_CAPABILITYEnum["MAV_PROTOCOL_CAPABILITY_MISSION_FLOAT"] = 1] = "MAV_PROTOCOL_CAPABILITY_MISSION_FLOAT";
|
|
2011
|
-
// Autopilot supports the new param float message type.
|
|
2012
|
-
MAV_PROTOCOL_CAPABILITYEnum[MAV_PROTOCOL_CAPABILITYEnum["MAV_PROTOCOL_CAPABILITY_PARAM_FLOAT"] = 2] = "MAV_PROTOCOL_CAPABILITY_PARAM_FLOAT";
|
|
2013
|
-
// Autopilot supports MISSION_ITEM_INT scaled integer message type.
|
|
2014
|
-
// Note that this flag must always be set if missions are supported, because missions must always use MISSION_ITEM_INT (rather than MISSION_ITEM, which is deprecated).
|
|
2015
|
-
MAV_PROTOCOL_CAPABILITYEnum[MAV_PROTOCOL_CAPABILITYEnum["MAV_PROTOCOL_CAPABILITY_MISSION_INT"] = 4] = "MAV_PROTOCOL_CAPABILITY_MISSION_INT";
|
|
2016
|
-
// Autopilot supports COMMAND_INT scaled integer message type.
|
|
2017
|
-
MAV_PROTOCOL_CAPABILITYEnum[MAV_PROTOCOL_CAPABILITYEnum["MAV_PROTOCOL_CAPABILITY_COMMAND_INT"] = 8] = "MAV_PROTOCOL_CAPABILITY_COMMAND_INT";
|
|
2018
|
-
// Parameter protocol uses byte-wise encoding of parameter values into param_value (float) fields: https://mavlink.io/en/services/parameter.html#parameter-encoding.
|
|
2019
|
-
// Note that either this flag or MAV_PROTOCOL_CAPABILITY_PARAM_ENCODE_C_CAST should be set if the parameter protocol is supported.
|
|
2020
|
-
MAV_PROTOCOL_CAPABILITYEnum[MAV_PROTOCOL_CAPABILITYEnum["MAV_PROTOCOL_CAPABILITY_PARAM_ENCODE_BYTEWISE"] = 16] = "MAV_PROTOCOL_CAPABILITY_PARAM_ENCODE_BYTEWISE";
|
|
2021
|
-
// Autopilot supports the File Transfer Protocol v1: https://mavlink.io/en/services/ftp.html.
|
|
2022
|
-
MAV_PROTOCOL_CAPABILITYEnum[MAV_PROTOCOL_CAPABILITYEnum["MAV_PROTOCOL_CAPABILITY_FTP"] = 32] = "MAV_PROTOCOL_CAPABILITY_FTP";
|
|
2023
|
-
// Autopilot supports commanding attitude offboard.
|
|
2024
|
-
MAV_PROTOCOL_CAPABILITYEnum[MAV_PROTOCOL_CAPABILITYEnum["MAV_PROTOCOL_CAPABILITY_SET_ATTITUDE_TARGET"] = 64] = "MAV_PROTOCOL_CAPABILITY_SET_ATTITUDE_TARGET";
|
|
2025
|
-
// Autopilot supports commanding position and velocity targets in local NED frame.
|
|
2026
|
-
MAV_PROTOCOL_CAPABILITYEnum[MAV_PROTOCOL_CAPABILITYEnum["MAV_PROTOCOL_CAPABILITY_SET_POSITION_TARGET_LOCAL_NED"] = 128] = "MAV_PROTOCOL_CAPABILITY_SET_POSITION_TARGET_LOCAL_NED";
|
|
2027
|
-
// Autopilot supports commanding position and velocity targets in global scaled integers.
|
|
2028
|
-
MAV_PROTOCOL_CAPABILITYEnum[MAV_PROTOCOL_CAPABILITYEnum["MAV_PROTOCOL_CAPABILITY_SET_POSITION_TARGET_GLOBAL_INT"] = 256] = "MAV_PROTOCOL_CAPABILITY_SET_POSITION_TARGET_GLOBAL_INT";
|
|
2029
|
-
// Autopilot supports terrain protocol / data handling.
|
|
2030
|
-
MAV_PROTOCOL_CAPABILITYEnum[MAV_PROTOCOL_CAPABILITYEnum["MAV_PROTOCOL_CAPABILITY_TERRAIN"] = 512] = "MAV_PROTOCOL_CAPABILITY_TERRAIN";
|
|
2031
|
-
// Reserved for future use.
|
|
2032
|
-
MAV_PROTOCOL_CAPABILITYEnum[MAV_PROTOCOL_CAPABILITYEnum["MAV_PROTOCOL_CAPABILITY_RESERVED3"] = 1024] = "MAV_PROTOCOL_CAPABILITY_RESERVED3";
|
|
2033
|
-
// Autopilot supports the MAV_CMD_DO_FLIGHTTERMINATION command (flight termination).
|
|
2034
|
-
MAV_PROTOCOL_CAPABILITYEnum[MAV_PROTOCOL_CAPABILITYEnum["MAV_PROTOCOL_CAPABILITY_FLIGHT_TERMINATION"] = 2048] = "MAV_PROTOCOL_CAPABILITY_FLIGHT_TERMINATION";
|
|
2035
|
-
// Autopilot supports onboard compass calibration.
|
|
2036
|
-
MAV_PROTOCOL_CAPABILITYEnum[MAV_PROTOCOL_CAPABILITYEnum["MAV_PROTOCOL_CAPABILITY_COMPASS_CALIBRATION"] = 4096] = "MAV_PROTOCOL_CAPABILITY_COMPASS_CALIBRATION";
|
|
2037
|
-
// Autopilot supports MAVLink version 2.
|
|
2038
|
-
MAV_PROTOCOL_CAPABILITYEnum[MAV_PROTOCOL_CAPABILITYEnum["MAV_PROTOCOL_CAPABILITY_MAVLINK2"] = 8192] = "MAV_PROTOCOL_CAPABILITY_MAVLINK2";
|
|
2039
|
-
// Autopilot supports mission fence protocol.
|
|
2040
|
-
MAV_PROTOCOL_CAPABILITYEnum[MAV_PROTOCOL_CAPABILITYEnum["MAV_PROTOCOL_CAPABILITY_MISSION_FENCE"] = 16384] = "MAV_PROTOCOL_CAPABILITY_MISSION_FENCE";
|
|
2041
|
-
// Autopilot supports mission rally point protocol.
|
|
2042
|
-
MAV_PROTOCOL_CAPABILITYEnum[MAV_PROTOCOL_CAPABILITYEnum["MAV_PROTOCOL_CAPABILITY_MISSION_RALLY"] = 32768] = "MAV_PROTOCOL_CAPABILITY_MISSION_RALLY";
|
|
2043
|
-
// Reserved for future use.
|
|
2044
|
-
MAV_PROTOCOL_CAPABILITYEnum[MAV_PROTOCOL_CAPABILITYEnum["MAV_PROTOCOL_CAPABILITY_RESERVED2"] = 65536] = "MAV_PROTOCOL_CAPABILITY_RESERVED2";
|
|
2045
|
-
// Parameter protocol uses C-cast of parameter values to set the param_value (float) fields: https://mavlink.io/en/services/parameter.html#parameter-encoding.
|
|
2046
|
-
// Note that either this flag or MAV_PROTOCOL_CAPABILITY_PARAM_ENCODE_BYTEWISE should be set if the parameter protocol is supported.
|
|
2047
|
-
MAV_PROTOCOL_CAPABILITYEnum[MAV_PROTOCOL_CAPABILITYEnum["MAV_PROTOCOL_CAPABILITY_PARAM_ENCODE_C_CAST"] = 131072] = "MAV_PROTOCOL_CAPABILITY_PARAM_ENCODE_C_CAST";
|
|
2048
|
-
// This component implements/is a gimbal manager. This means the GIMBAL_MANAGER_INFORMATION, and other messages can be requested.
|
|
2049
|
-
MAV_PROTOCOL_CAPABILITYEnum[MAV_PROTOCOL_CAPABILITYEnum["MAV_PROTOCOL_CAPABILITY_COMPONENT_IMPLEMENTS_GIMBAL_MANAGER"] = 262144] = "MAV_PROTOCOL_CAPABILITY_COMPONENT_IMPLEMENTS_GIMBAL_MANAGER";
|
|
2050
|
-
// Component supports locking control to a particular GCS independent of its system (via MAV_CMD_REQUEST_OPERATOR_CONTROL).
|
|
2051
|
-
MAV_PROTOCOL_CAPABILITYEnum[MAV_PROTOCOL_CAPABILITYEnum["MAV_PROTOCOL_CAPABILITY_COMPONENT_ACCEPTS_GCS_CONTROL"] = 524288] = "MAV_PROTOCOL_CAPABILITY_COMPONENT_ACCEPTS_GCS_CONTROL";
|
|
2052
|
-
// Autopilot has a connected gripper. MAVLink Grippers would set MAV_TYPE_GRIPPER instead.
|
|
2053
|
-
MAV_PROTOCOL_CAPABILITYEnum[MAV_PROTOCOL_CAPABILITYEnum["MAV_PROTOCOL_CAPABILITY_GRIPPER"] = 1048576] = "MAV_PROTOCOL_CAPABILITY_GRIPPER";
|
|
2054
|
-
})(MAV_PROTOCOL_CAPABILITYEnum || (MAV_PROTOCOL_CAPABILITYEnum = {}));
|
|
2055
2109
|
// Type of mission items being requested/sent in mission protocol.
|
|
2056
2110
|
var MAV_MISSION_TYPEEnum;
|
|
2057
2111
|
(function (MAV_MISSION_TYPEEnum) {
|
|
@@ -2510,6 +2564,8 @@ var CAMERA_CAP_FLAGSEnum;
|
|
|
2510
2564
|
CAMERA_CAP_FLAGSEnum[CAMERA_CAP_FLAGSEnum["CAMERA_CAP_FLAGS_HAS_TRACKING_GEO_STATUS"] = 2048] = "CAMERA_CAP_FLAGS_HAS_TRACKING_GEO_STATUS";
|
|
2511
2565
|
// Camera supports absolute thermal range (request CAMERA_THERMAL_RANGE with MAV_CMD_REQUEST_MESSAGE).
|
|
2512
2566
|
CAMERA_CAP_FLAGSEnum[CAMERA_CAP_FLAGSEnum["CAMERA_CAP_FLAGS_HAS_THERMAL_RANGE"] = 4096] = "CAMERA_CAP_FLAGS_HAS_THERMAL_RANGE";
|
|
2567
|
+
// Camera supports Moving Target Indicators (MTI) on the camera view (using MAV_CMD_CAMERA_START_MTI).
|
|
2568
|
+
CAMERA_CAP_FLAGSEnum[CAMERA_CAP_FLAGSEnum["CAMERA_CAP_FLAGS_HAS_MTI"] = 8192] = "CAMERA_CAP_FLAGS_HAS_MTI";
|
|
2513
2569
|
})(CAMERA_CAP_FLAGSEnum || (CAMERA_CAP_FLAGSEnum = {}));
|
|
2514
2570
|
// Stream status flags (Bitmap)
|
|
2515
2571
|
var VIDEO_STREAM_STATUS_FLAGSEnum;
|
|
@@ -2552,6 +2608,10 @@ var CAMERA_TRACKING_STATUS_FLAGSEnum;
|
|
|
2552
2608
|
CAMERA_TRACKING_STATUS_FLAGSEnum[CAMERA_TRACKING_STATUS_FLAGSEnum["CAMERA_TRACKING_STATUS_FLAGS_ACTIVE"] = 1] = "CAMERA_TRACKING_STATUS_FLAGS_ACTIVE";
|
|
2553
2609
|
// Camera tracking in error state
|
|
2554
2610
|
CAMERA_TRACKING_STATUS_FLAGSEnum[CAMERA_TRACKING_STATUS_FLAGSEnum["CAMERA_TRACKING_STATUS_FLAGS_ERROR"] = 2] = "CAMERA_TRACKING_STATUS_FLAGS_ERROR";
|
|
2611
|
+
// Camera Moving Target Indicators (MTI) are active
|
|
2612
|
+
CAMERA_TRACKING_STATUS_FLAGSEnum[CAMERA_TRACKING_STATUS_FLAGSEnum["CAMERA_TRACKING_STATUS_FLAGS_MTI"] = 4] = "CAMERA_TRACKING_STATUS_FLAGS_MTI";
|
|
2613
|
+
// Camera tracking target is obscured and is being predicted
|
|
2614
|
+
CAMERA_TRACKING_STATUS_FLAGSEnum[CAMERA_TRACKING_STATUS_FLAGSEnum["CAMERA_TRACKING_STATUS_FLAGS_COASTING"] = 8] = "CAMERA_TRACKING_STATUS_FLAGS_COASTING";
|
|
2555
2615
|
})(CAMERA_TRACKING_STATUS_FLAGSEnum || (CAMERA_TRACKING_STATUS_FLAGSEnum = {}));
|
|
2556
2616
|
// Camera tracking modes
|
|
2557
2617
|
var CAMERA_TRACKING_MODEEnum;
|
|
@@ -3220,24 +3280,24 @@ var AIS_TYPEEnum;
|
|
|
3220
3280
|
var AIS_NAV_STATUSEnum;
|
|
3221
3281
|
(function (AIS_NAV_STATUSEnum) {
|
|
3222
3282
|
// Under way using engine.
|
|
3223
|
-
AIS_NAV_STATUSEnum[AIS_NAV_STATUSEnum["
|
|
3224
|
-
AIS_NAV_STATUSEnum[AIS_NAV_STATUSEnum["
|
|
3225
|
-
AIS_NAV_STATUSEnum[AIS_NAV_STATUSEnum["
|
|
3226
|
-
AIS_NAV_STATUSEnum[AIS_NAV_STATUSEnum["
|
|
3227
|
-
AIS_NAV_STATUSEnum[AIS_NAV_STATUSEnum["
|
|
3228
|
-
AIS_NAV_STATUSEnum[AIS_NAV_STATUSEnum["
|
|
3229
|
-
AIS_NAV_STATUSEnum[AIS_NAV_STATUSEnum["
|
|
3230
|
-
AIS_NAV_STATUSEnum[AIS_NAV_STATUSEnum["
|
|
3231
|
-
AIS_NAV_STATUSEnum[AIS_NAV_STATUSEnum["
|
|
3232
|
-
AIS_NAV_STATUSEnum[AIS_NAV_STATUSEnum["
|
|
3233
|
-
AIS_NAV_STATUSEnum[AIS_NAV_STATUSEnum["
|
|
3234
|
-
AIS_NAV_STATUSEnum[AIS_NAV_STATUSEnum["
|
|
3235
|
-
AIS_NAV_STATUSEnum[AIS_NAV_STATUSEnum["
|
|
3236
|
-
AIS_NAV_STATUSEnum[AIS_NAV_STATUSEnum["
|
|
3283
|
+
AIS_NAV_STATUSEnum[AIS_NAV_STATUSEnum["AIS_NAV_STATUS_UNDER_WAY"] = 0] = "AIS_NAV_STATUS_UNDER_WAY";
|
|
3284
|
+
AIS_NAV_STATUSEnum[AIS_NAV_STATUSEnum["AIS_NAV_STATUS_ANCHORED"] = 1] = "AIS_NAV_STATUS_ANCHORED";
|
|
3285
|
+
AIS_NAV_STATUSEnum[AIS_NAV_STATUSEnum["AIS_NAV_STATUS_UN_COMMANDED"] = 2] = "AIS_NAV_STATUS_UN_COMMANDED";
|
|
3286
|
+
AIS_NAV_STATUSEnum[AIS_NAV_STATUSEnum["AIS_NAV_STATUS_RESTRICTED_MANOEUVERABILITY"] = 3] = "AIS_NAV_STATUS_RESTRICTED_MANOEUVERABILITY";
|
|
3287
|
+
AIS_NAV_STATUSEnum[AIS_NAV_STATUSEnum["AIS_NAV_STATUS_DRAUGHT_CONSTRAINED"] = 4] = "AIS_NAV_STATUS_DRAUGHT_CONSTRAINED";
|
|
3288
|
+
AIS_NAV_STATUSEnum[AIS_NAV_STATUSEnum["AIS_NAV_STATUS_MOORED"] = 5] = "AIS_NAV_STATUS_MOORED";
|
|
3289
|
+
AIS_NAV_STATUSEnum[AIS_NAV_STATUSEnum["AIS_NAV_STATUS_AGROUND"] = 6] = "AIS_NAV_STATUS_AGROUND";
|
|
3290
|
+
AIS_NAV_STATUSEnum[AIS_NAV_STATUSEnum["AIS_NAV_STATUS_FISHING"] = 7] = "AIS_NAV_STATUS_FISHING";
|
|
3291
|
+
AIS_NAV_STATUSEnum[AIS_NAV_STATUSEnum["AIS_NAV_STATUS_SAILING"] = 8] = "AIS_NAV_STATUS_SAILING";
|
|
3292
|
+
AIS_NAV_STATUSEnum[AIS_NAV_STATUSEnum["AIS_NAV_STATUS_RESERVED_HSC"] = 9] = "AIS_NAV_STATUS_RESERVED_HSC";
|
|
3293
|
+
AIS_NAV_STATUSEnum[AIS_NAV_STATUSEnum["AIS_NAV_STATUS_RESERVED_WIG"] = 10] = "AIS_NAV_STATUS_RESERVED_WIG";
|
|
3294
|
+
AIS_NAV_STATUSEnum[AIS_NAV_STATUSEnum["AIS_NAV_STATUS_RESERVED_1"] = 11] = "AIS_NAV_STATUS_RESERVED_1";
|
|
3295
|
+
AIS_NAV_STATUSEnum[AIS_NAV_STATUSEnum["AIS_NAV_STATUS_RESERVED_2"] = 12] = "AIS_NAV_STATUS_RESERVED_2";
|
|
3296
|
+
AIS_NAV_STATUSEnum[AIS_NAV_STATUSEnum["AIS_NAV_STATUS_RESERVED_3"] = 13] = "AIS_NAV_STATUS_RESERVED_3";
|
|
3237
3297
|
// Search And Rescue Transponder.
|
|
3238
|
-
AIS_NAV_STATUSEnum[AIS_NAV_STATUSEnum["
|
|
3298
|
+
AIS_NAV_STATUSEnum[AIS_NAV_STATUSEnum["AIS_NAV_STATUS_AIS_SART"] = 14] = "AIS_NAV_STATUS_AIS_SART";
|
|
3239
3299
|
// Not available (default).
|
|
3240
|
-
AIS_NAV_STATUSEnum[AIS_NAV_STATUSEnum["
|
|
3300
|
+
AIS_NAV_STATUSEnum[AIS_NAV_STATUSEnum["AIS_NAV_STATUS_UNKNOWN"] = 15] = "AIS_NAV_STATUS_UNKNOWN";
|
|
3241
3301
|
})(AIS_NAV_STATUSEnum || (AIS_NAV_STATUSEnum = {}));
|
|
3242
3302
|
// These flags are used in the AIS_VESSEL.fields bitmask to indicate validity of data in the other message fields. When set, the data is valid.
|
|
3243
3303
|
var AIS_FLAGSEnum;
|
|
@@ -3631,14 +3691,37 @@ var HIL_ACTUATOR_CONTROLS_FLAGSEnum;
|
|
|
3631
3691
|
// Simulation is using lockstep
|
|
3632
3692
|
HIL_ACTUATOR_CONTROLS_FLAGSEnum[HIL_ACTUATOR_CONTROLS_FLAGSEnum["HIL_ACTUATOR_CONTROLS_FLAGS_LOCKSTEP"] = 1] = "HIL_ACTUATOR_CONTROLS_FLAGS_LOCKSTEP";
|
|
3633
3693
|
})(HIL_ACTUATOR_CONTROLS_FLAGSEnum || (HIL_ACTUATOR_CONTROLS_FLAGSEnum = {}));
|
|
3694
|
+
// Flags used to report computer status.
|
|
3695
|
+
var COMPUTER_STATUS_FLAGSEnum;
|
|
3696
|
+
(function (COMPUTER_STATUS_FLAGSEnum) {
|
|
3697
|
+
// Indicates if the system is experiencing voltage outside of acceptable range.
|
|
3698
|
+
COMPUTER_STATUS_FLAGSEnum[COMPUTER_STATUS_FLAGSEnum["COMPUTER_STATUS_FLAGS_UNDER_VOLTAGE"] = 1] = "COMPUTER_STATUS_FLAGS_UNDER_VOLTAGE";
|
|
3699
|
+
// Indicates if CPU throttling is active.
|
|
3700
|
+
COMPUTER_STATUS_FLAGSEnum[COMPUTER_STATUS_FLAGSEnum["COMPUTER_STATUS_FLAGS_CPU_THROTTLE"] = 2] = "COMPUTER_STATUS_FLAGS_CPU_THROTTLE";
|
|
3701
|
+
// Indicates if thermal throttling is active.
|
|
3702
|
+
COMPUTER_STATUS_FLAGSEnum[COMPUTER_STATUS_FLAGSEnum["COMPUTER_STATUS_FLAGS_THERMAL_THROTTLE"] = 4] = "COMPUTER_STATUS_FLAGS_THERMAL_THROTTLE";
|
|
3703
|
+
// Indicates if main disk is full.
|
|
3704
|
+
COMPUTER_STATUS_FLAGSEnum[COMPUTER_STATUS_FLAGSEnum["COMPUTER_STATUS_FLAGS_DISK_FULL"] = 8] = "COMPUTER_STATUS_FLAGS_DISK_FULL";
|
|
3705
|
+
})(COMPUTER_STATUS_FLAGSEnum || (COMPUTER_STATUS_FLAGSEnum = {}));
|
|
3706
|
+
// Airspeed sensor flags
|
|
3707
|
+
var AIRSPEED_SENSOR_FLAGSEnum;
|
|
3708
|
+
(function (AIRSPEED_SENSOR_FLAGSEnum) {
|
|
3709
|
+
// Airspeed sensor is unhealthy
|
|
3710
|
+
AIRSPEED_SENSOR_FLAGSEnum[AIRSPEED_SENSOR_FLAGSEnum["AIRSPEED_SENSOR_UNHEALTHY"] = 1] = "AIRSPEED_SENSOR_UNHEALTHY";
|
|
3711
|
+
// True if the data from this sensor is being actively used by the flight controller for guidance, navigation or control.
|
|
3712
|
+
AIRSPEED_SENSOR_FLAGSEnum[AIRSPEED_SENSOR_FLAGSEnum["AIRSPEED_SENSOR_USING"] = 2] = "AIRSPEED_SENSOR_USING";
|
|
3713
|
+
})(AIRSPEED_SENSOR_FLAGSEnum || (AIRSPEED_SENSOR_FLAGSEnum = {}));
|
|
3634
3714
|
|
|
3635
3715
|
// Auto-generated TypeScript message interfaces for common dialect
|
|
3636
3716
|
// Type guard functions
|
|
3637
3717
|
function isHeartbeat(msg) {
|
|
3638
3718
|
return msg.message_name === 'HEARTBEAT';
|
|
3639
3719
|
}
|
|
3640
|
-
function
|
|
3641
|
-
return msg.message_name === '
|
|
3720
|
+
function isGlobalPositionInt(msg) {
|
|
3721
|
+
return msg.message_name === 'GLOBAL_POSITION_INT';
|
|
3722
|
+
}
|
|
3723
|
+
function isAutopilotVersion(msg) {
|
|
3724
|
+
return msg.message_name === 'AUTOPILOT_VERSION';
|
|
3642
3725
|
}
|
|
3643
3726
|
function isSysStatus(msg) {
|
|
3644
3727
|
return msg.message_name === 'SYS_STATUS';
|
|
@@ -3703,9 +3786,6 @@ function isAttitudeQuaternion(msg) {
|
|
|
3703
3786
|
function isLocalPositionNed(msg) {
|
|
3704
3787
|
return msg.message_name === 'LOCAL_POSITION_NED';
|
|
3705
3788
|
}
|
|
3706
|
-
function isGlobalPositionInt(msg) {
|
|
3707
|
-
return msg.message_name === 'GLOBAL_POSITION_INT';
|
|
3708
|
-
}
|
|
3709
3789
|
function isRcChannelsScaled(msg) {
|
|
3710
3790
|
return msg.message_name === 'RC_CHANNELS_SCALED';
|
|
3711
3791
|
}
|
|
@@ -3988,9 +4068,6 @@ function isControlSystemState(msg) {
|
|
|
3988
4068
|
function isBatteryStatus(msg) {
|
|
3989
4069
|
return msg.message_name === 'BATTERY_STATUS';
|
|
3990
4070
|
}
|
|
3991
|
-
function isAutopilotVersion(msg) {
|
|
3992
|
-
return msg.message_name === 'AUTOPILOT_VERSION';
|
|
3993
|
-
}
|
|
3994
4071
|
function isLandingTarget(msg) {
|
|
3995
4072
|
return msg.message_name === 'LANDING_TARGET';
|
|
3996
4073
|
}
|
|
@@ -4153,9 +4230,15 @@ function isEscInfo(msg) {
|
|
|
4153
4230
|
function isEscStatus(msg) {
|
|
4154
4231
|
return msg.message_name === 'ESC_STATUS';
|
|
4155
4232
|
}
|
|
4233
|
+
function isAirspeed(msg) {
|
|
4234
|
+
return msg.message_name === 'AIRSPEED';
|
|
4235
|
+
}
|
|
4156
4236
|
function isWifiConfigAp(msg) {
|
|
4157
4237
|
return msg.message_name === 'WIFI_CONFIG_AP';
|
|
4158
4238
|
}
|
|
4239
|
+
function isProtocolVersion(msg) {
|
|
4240
|
+
return msg.message_name === 'PROTOCOL_VERSION';
|
|
4241
|
+
}
|
|
4159
4242
|
function isAisVessel(msg) {
|
|
4160
4243
|
return msg.message_name === 'AIS_VESSEL';
|
|
4161
4244
|
}
|
|
@@ -4207,6 +4290,9 @@ function isRawRpm(msg) {
|
|
|
4207
4290
|
function isUtmGlobalPosition(msg) {
|
|
4208
4291
|
return msg.message_name === 'UTM_GLOBAL_POSITION';
|
|
4209
4292
|
}
|
|
4293
|
+
function isParamError(msg) {
|
|
4294
|
+
return msg.message_name === 'PARAM_ERROR';
|
|
4295
|
+
}
|
|
4210
4296
|
function isDebugFloatArray(msg) {
|
|
4211
4297
|
return msg.message_name === 'DEBUG_FLOAT_ARRAY';
|
|
4212
4298
|
}
|
|
@@ -4216,6 +4302,9 @@ function isOrbitExecutionStatus(msg) {
|
|
|
4216
4302
|
function isSmartBatteryInfo(msg) {
|
|
4217
4303
|
return msg.message_name === 'SMART_BATTERY_INFO';
|
|
4218
4304
|
}
|
|
4305
|
+
function isFigureEightExecutionStatus(msg) {
|
|
4306
|
+
return msg.message_name === 'FIGURE_EIGHT_EXECUTION_STATUS';
|
|
4307
|
+
}
|
|
4219
4308
|
function isFuelStatus(msg) {
|
|
4220
4309
|
return msg.message_name === 'FUEL_STATUS';
|
|
4221
4310
|
}
|
|
@@ -4327,7 +4416,8 @@ function isHygrometerSensor(msg) {
|
|
|
4327
4416
|
// Embedded MAVLink CRC implementation
|
|
4328
4417
|
const CRC_EXTRA = {
|
|
4329
4418
|
0: 50,
|
|
4330
|
-
|
|
4419
|
+
33: 104,
|
|
4420
|
+
148: 106,
|
|
4331
4421
|
1: 124,
|
|
4332
4422
|
2: 137,
|
|
4333
4423
|
4: 237,
|
|
@@ -4349,7 +4439,6 @@ const CRC_EXTRA = {
|
|
|
4349
4439
|
30: 39,
|
|
4350
4440
|
31: 246,
|
|
4351
4441
|
32: 185,
|
|
4352
|
-
33: 104,
|
|
4353
4442
|
34: 237,
|
|
4354
4443
|
35: 244,
|
|
4355
4444
|
36: 222,
|
|
@@ -4444,7 +4533,6 @@ const CRC_EXTRA = {
|
|
|
4444
4533
|
144: 158,
|
|
4445
4534
|
146: 152,
|
|
4446
4535
|
147: 143,
|
|
4447
|
-
148: 106,
|
|
4448
4536
|
149: 49,
|
|
4449
4537
|
162: 0,
|
|
4450
4538
|
192: 0,
|
|
@@ -4499,7 +4587,9 @@ const CRC_EXTRA = {
|
|
|
4499
4587
|
288: 0,
|
|
4500
4588
|
290: 0,
|
|
4501
4589
|
291: 0,
|
|
4590
|
+
295: 0,
|
|
4502
4591
|
299: 0,
|
|
4592
|
+
300: 0,
|
|
4503
4593
|
301: 0,
|
|
4504
4594
|
310: 0,
|
|
4505
4595
|
311: 0,
|
|
@@ -4517,9 +4607,11 @@ const CRC_EXTRA = {
|
|
|
4517
4607
|
336: 0,
|
|
4518
4608
|
339: 0,
|
|
4519
4609
|
340: 0,
|
|
4610
|
+
345: 0,
|
|
4520
4611
|
350: 0,
|
|
4521
4612
|
360: 0,
|
|
4522
4613
|
370: 0,
|
|
4614
|
+
361: 0,
|
|
4523
4615
|
371: 0,
|
|
4524
4616
|
372: 0,
|
|
4525
4617
|
373: 0,
|
|
@@ -4717,7 +4809,11 @@ class DialectParser {
|
|
|
4717
4809
|
const result = {};
|
|
4718
4810
|
const view = new DataView(payload.buffer, payload.byteOffset, payload.byteLength);
|
|
4719
4811
|
let offset = 0;
|
|
4720
|
-
|
|
4812
|
+
// MAVLink v2 wire format: fields are sorted by type size (largest first)
|
|
4813
|
+
// Extension fields come after core fields and maintain their XML order
|
|
4814
|
+
// See: https://mavlink.io/en/guide/serialization.html#field_reordering
|
|
4815
|
+
const sortedFields = this.sortFieldsByWireOrder(fields);
|
|
4816
|
+
for (const field of sortedFields) {
|
|
4721
4817
|
if (offset >= payload.length) {
|
|
4722
4818
|
result[field.name] = this.getDefaultValue(field);
|
|
4723
4819
|
}
|
|
@@ -4729,6 +4825,43 @@ class DialectParser {
|
|
|
4729
4825
|
}
|
|
4730
4826
|
return result;
|
|
4731
4827
|
}
|
|
4828
|
+
// Sort fields by MAVLink v2 wire order: by type size descending, extensions last
|
|
4829
|
+
// Uses stable sort to preserve original order for same-size fields
|
|
4830
|
+
sortFieldsByWireOrder(fields) {
|
|
4831
|
+
// Separate core fields and extension fields
|
|
4832
|
+
const coreFields = [];
|
|
4833
|
+
const extensionFields = [];
|
|
4834
|
+
fields.forEach((field, index) => {
|
|
4835
|
+
if (field.extension) {
|
|
4836
|
+
extensionFields.push(field);
|
|
4837
|
+
}
|
|
4838
|
+
else {
|
|
4839
|
+
coreFields.push({ field, originalIndex: index });
|
|
4840
|
+
}
|
|
4841
|
+
});
|
|
4842
|
+
// Stable sort core fields by type size (descending)
|
|
4843
|
+
// Arrays are sorted by element type size, not total array size
|
|
4844
|
+
coreFields.sort((a, b) => {
|
|
4845
|
+
const sizeA = this.getFieldTypeSize(a.field);
|
|
4846
|
+
const sizeB = this.getFieldTypeSize(b.field);
|
|
4847
|
+
if (sizeB !== sizeA) {
|
|
4848
|
+
return sizeB - sizeA; // Descending order (largest first)
|
|
4849
|
+
}
|
|
4850
|
+
// Same size: maintain original XML order (stable sort)
|
|
4851
|
+
return a.originalIndex - b.originalIndex;
|
|
4852
|
+
});
|
|
4853
|
+
// Extension fields maintain their XML order and come after core fields
|
|
4854
|
+
return [...coreFields.map(c => c.field), ...extensionFields];
|
|
4855
|
+
}
|
|
4856
|
+
// Get the size of a single element of a field type (for wire order sorting)
|
|
4857
|
+
getFieldTypeSize(field) {
|
|
4858
|
+
let baseType = field.type;
|
|
4859
|
+
// Strip array notation to get base type (arrays sort by element type, not total size)
|
|
4860
|
+
if (baseType.includes('[') && baseType.includes(']')) {
|
|
4861
|
+
baseType = baseType.substring(0, baseType.indexOf('['));
|
|
4862
|
+
}
|
|
4863
|
+
return this.getSingleFieldSize(baseType);
|
|
4864
|
+
}
|
|
4732
4865
|
getDefaultValue(field) {
|
|
4733
4866
|
const isArray = field.arrayLength !== undefined && field.arrayLength > 1;
|
|
4734
4867
|
if (isArray) {
|
|
@@ -4935,15 +5068,19 @@ class DialectParser {
|
|
|
4935
5068
|
}
|
|
4936
5069
|
}
|
|
4937
5070
|
serializePayload(message, fields) {
|
|
5071
|
+
// MAVLink v2 wire format: fields must be sorted by type size (largest first)
|
|
5072
|
+
// Extension fields come after core fields and maintain their XML order
|
|
5073
|
+
// See: https://mavlink.io/en/guide/serialization.html#field_reordering
|
|
5074
|
+
const sortedFields = this.sortFieldsByWireOrder(fields);
|
|
4938
5075
|
// Calculate total payload size
|
|
4939
5076
|
let totalSize = 0;
|
|
4940
|
-
for (const field of
|
|
5077
|
+
for (const field of sortedFields) {
|
|
4941
5078
|
totalSize += this.getFieldSize(field);
|
|
4942
5079
|
}
|
|
4943
5080
|
const buffer = new ArrayBuffer(totalSize);
|
|
4944
5081
|
const view = new DataView(buffer);
|
|
4945
5082
|
let offset = 0;
|
|
4946
|
-
for (const field of
|
|
5083
|
+
for (const field of sortedFields) {
|
|
4947
5084
|
const value = message[field.name];
|
|
4948
5085
|
const bytesWritten = this.serializeField(view, offset, field, value);
|
|
4949
5086
|
offset += bytesWritten;
|
|
@@ -4955,8 +5092,7 @@ class DialectParser {
|
|
|
4955
5092
|
let corePayloadSize = 0;
|
|
4956
5093
|
let extensionStartOffset = 0;
|
|
4957
5094
|
let hasExtensions = false;
|
|
4958
|
-
|
|
4959
|
-
for (const field of fields) {
|
|
5095
|
+
for (const field of sortedFields) {
|
|
4960
5096
|
const fieldSize = this.getFieldSize(field);
|
|
4961
5097
|
// Check if this is an extension field using proper XML-based detection
|
|
4962
5098
|
const isExtensionField = field.extension === true;
|
|
@@ -5247,31 +5383,104 @@ const MESSAGE_DEFINITIONS = [
|
|
|
5247
5383
|
]
|
|
5248
5384
|
},
|
|
5249
5385
|
{
|
|
5250
|
-
id:
|
|
5251
|
-
name: '
|
|
5386
|
+
id: 33,
|
|
5387
|
+
name: 'GLOBAL_POSITION_INT',
|
|
5252
5388
|
fields: [
|
|
5253
5389
|
{
|
|
5254
|
-
name: '
|
|
5255
|
-
type: '
|
|
5256
|
-
arrayLength: 8,
|
|
5390
|
+
name: 'time_boot_ms',
|
|
5391
|
+
type: 'uint32_t',
|
|
5257
5392
|
},
|
|
5258
5393
|
{
|
|
5259
|
-
name: '
|
|
5260
|
-
type: '
|
|
5261
|
-
arrayLength: 8,
|
|
5394
|
+
name: 'lat',
|
|
5395
|
+
type: 'int32_t',
|
|
5262
5396
|
},
|
|
5263
5397
|
{
|
|
5264
|
-
name: '
|
|
5398
|
+
name: 'lon',
|
|
5399
|
+
type: 'int32_t',
|
|
5400
|
+
},
|
|
5401
|
+
{
|
|
5402
|
+
name: 'alt',
|
|
5403
|
+
type: 'int32_t',
|
|
5404
|
+
},
|
|
5405
|
+
{
|
|
5406
|
+
name: 'relative_alt',
|
|
5407
|
+
type: 'int32_t',
|
|
5408
|
+
},
|
|
5409
|
+
{
|
|
5410
|
+
name: 'vx',
|
|
5411
|
+
type: 'int16_t',
|
|
5412
|
+
},
|
|
5413
|
+
{
|
|
5414
|
+
name: 'vy',
|
|
5415
|
+
type: 'int16_t',
|
|
5416
|
+
},
|
|
5417
|
+
{
|
|
5418
|
+
name: 'vz',
|
|
5419
|
+
type: 'int16_t',
|
|
5420
|
+
},
|
|
5421
|
+
{
|
|
5422
|
+
name: 'hdg',
|
|
5265
5423
|
type: 'uint16_t',
|
|
5266
5424
|
},
|
|
5425
|
+
]
|
|
5426
|
+
},
|
|
5427
|
+
{
|
|
5428
|
+
id: 148,
|
|
5429
|
+
name: 'AUTOPILOT_VERSION',
|
|
5430
|
+
fields: [
|
|
5431
|
+
{
|
|
5432
|
+
name: 'capabilities',
|
|
5433
|
+
type: 'uint64_t',
|
|
5434
|
+
},
|
|
5267
5435
|
{
|
|
5268
|
-
name: '
|
|
5436
|
+
name: 'uid',
|
|
5437
|
+
type: 'uint64_t',
|
|
5438
|
+
},
|
|
5439
|
+
{
|
|
5440
|
+
name: 'flight_sw_version',
|
|
5441
|
+
type: 'uint32_t',
|
|
5442
|
+
},
|
|
5443
|
+
{
|
|
5444
|
+
name: 'middleware_sw_version',
|
|
5445
|
+
type: 'uint32_t',
|
|
5446
|
+
},
|
|
5447
|
+
{
|
|
5448
|
+
name: 'os_sw_version',
|
|
5449
|
+
type: 'uint32_t',
|
|
5450
|
+
},
|
|
5451
|
+
{
|
|
5452
|
+
name: 'board_version',
|
|
5453
|
+
type: 'uint32_t',
|
|
5454
|
+
},
|
|
5455
|
+
{
|
|
5456
|
+
name: 'vendor_id',
|
|
5269
5457
|
type: 'uint16_t',
|
|
5270
5458
|
},
|
|
5271
5459
|
{
|
|
5272
|
-
name: '
|
|
5460
|
+
name: 'product_id',
|
|
5273
5461
|
type: 'uint16_t',
|
|
5274
5462
|
},
|
|
5463
|
+
{
|
|
5464
|
+
name: 'flight_custom_version',
|
|
5465
|
+
type: 'uint8_t',
|
|
5466
|
+
arrayLength: 8,
|
|
5467
|
+
},
|
|
5468
|
+
{
|
|
5469
|
+
name: 'middleware_custom_version',
|
|
5470
|
+
type: 'uint8_t',
|
|
5471
|
+
arrayLength: 8,
|
|
5472
|
+
},
|
|
5473
|
+
{
|
|
5474
|
+
name: 'os_custom_version',
|
|
5475
|
+
type: 'uint8_t',
|
|
5476
|
+
arrayLength: 8,
|
|
5477
|
+
},
|
|
5478
|
+
{
|
|
5479
|
+
name: 'uid2',
|
|
5480
|
+
type: 'uint8_t',
|
|
5481
|
+
arrayLength: 18,
|
|
5482
|
+
extension: true,
|
|
5483
|
+
},
|
|
5275
5484
|
]
|
|
5276
5485
|
},
|
|
5277
5486
|
{
|
|
@@ -5387,11 +5596,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
5387
5596
|
id: 5,
|
|
5388
5597
|
name: 'CHANGE_OPERATOR_CONTROL',
|
|
5389
5598
|
fields: [
|
|
5390
|
-
{
|
|
5391
|
-
name: 'passkey',
|
|
5392
|
-
type: 'char',
|
|
5393
|
-
arrayLength: 25,
|
|
5394
|
-
},
|
|
5395
5599
|
{
|
|
5396
5600
|
name: 'target_system',
|
|
5397
5601
|
type: 'uint8_t',
|
|
@@ -5404,6 +5608,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
5404
5608
|
name: 'version',
|
|
5405
5609
|
type: 'uint8_t',
|
|
5406
5610
|
},
|
|
5611
|
+
{
|
|
5612
|
+
name: 'passkey',
|
|
5613
|
+
type: 'char',
|
|
5614
|
+
arrayLength: 25,
|
|
5615
|
+
},
|
|
5407
5616
|
]
|
|
5408
5617
|
},
|
|
5409
5618
|
{
|
|
@@ -5507,11 +5716,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
5507
5716
|
id: 20,
|
|
5508
5717
|
name: 'PARAM_REQUEST_READ',
|
|
5509
5718
|
fields: [
|
|
5510
|
-
{
|
|
5511
|
-
name: 'param_id',
|
|
5512
|
-
type: 'char',
|
|
5513
|
-
arrayLength: 16,
|
|
5514
|
-
},
|
|
5515
5719
|
{
|
|
5516
5720
|
name: 'param_index',
|
|
5517
5721
|
type: 'int16_t',
|
|
@@ -5524,6 +5728,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
5524
5728
|
name: 'target_component',
|
|
5525
5729
|
type: 'uint8_t',
|
|
5526
5730
|
},
|
|
5731
|
+
{
|
|
5732
|
+
name: 'param_id',
|
|
5733
|
+
type: 'char',
|
|
5734
|
+
arrayLength: 16,
|
|
5735
|
+
},
|
|
5527
5736
|
]
|
|
5528
5737
|
},
|
|
5529
5738
|
{
|
|
@@ -5544,11 +5753,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
5544
5753
|
id: 22,
|
|
5545
5754
|
name: 'PARAM_VALUE',
|
|
5546
5755
|
fields: [
|
|
5547
|
-
{
|
|
5548
|
-
name: 'param_id',
|
|
5549
|
-
type: 'char',
|
|
5550
|
-
arrayLength: 16,
|
|
5551
|
-
},
|
|
5552
5756
|
{
|
|
5553
5757
|
name: 'param_value',
|
|
5554
5758
|
type: 'float',
|
|
@@ -5561,6 +5765,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
5561
5765
|
name: 'param_index',
|
|
5562
5766
|
type: 'uint16_t',
|
|
5563
5767
|
},
|
|
5768
|
+
{
|
|
5769
|
+
name: 'param_id',
|
|
5770
|
+
type: 'char',
|
|
5771
|
+
arrayLength: 16,
|
|
5772
|
+
},
|
|
5564
5773
|
{
|
|
5565
5774
|
name: 'param_type',
|
|
5566
5775
|
type: 'uint8_t',
|
|
@@ -5571,11 +5780,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
5571
5780
|
id: 23,
|
|
5572
5781
|
name: 'PARAM_SET',
|
|
5573
5782
|
fields: [
|
|
5574
|
-
{
|
|
5575
|
-
name: 'param_id',
|
|
5576
|
-
type: 'char',
|
|
5577
|
-
arrayLength: 16,
|
|
5578
|
-
},
|
|
5579
5783
|
{
|
|
5580
5784
|
name: 'param_value',
|
|
5581
5785
|
type: 'float',
|
|
@@ -5588,6 +5792,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
5588
5792
|
name: 'target_component',
|
|
5589
5793
|
type: 'uint8_t',
|
|
5590
5794
|
},
|
|
5795
|
+
{
|
|
5796
|
+
name: 'param_id',
|
|
5797
|
+
type: 'char',
|
|
5798
|
+
arrayLength: 16,
|
|
5799
|
+
},
|
|
5591
5800
|
{
|
|
5592
5801
|
name: 'param_type',
|
|
5593
5802
|
type: 'uint8_t',
|
|
@@ -5674,6 +5883,10 @@ const MESSAGE_DEFINITIONS = [
|
|
|
5674
5883
|
id: 25,
|
|
5675
5884
|
name: 'GPS_STATUS',
|
|
5676
5885
|
fields: [
|
|
5886
|
+
{
|
|
5887
|
+
name: 'satellites_visible',
|
|
5888
|
+
type: 'uint8_t',
|
|
5889
|
+
},
|
|
5677
5890
|
{
|
|
5678
5891
|
name: 'satellite_prn',
|
|
5679
5892
|
type: 'uint8_t',
|
|
@@ -5699,10 +5912,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
5699
5912
|
type: 'uint8_t',
|
|
5700
5913
|
arrayLength: 20,
|
|
5701
5914
|
},
|
|
5702
|
-
{
|
|
5703
|
-
name: 'satellites_visible',
|
|
5704
|
-
type: 'uint8_t',
|
|
5705
|
-
},
|
|
5706
5915
|
]
|
|
5707
5916
|
},
|
|
5708
5917
|
{
|
|
@@ -5977,48 +6186,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
5977
6186
|
},
|
|
5978
6187
|
]
|
|
5979
6188
|
},
|
|
5980
|
-
{
|
|
5981
|
-
id: 33,
|
|
5982
|
-
name: 'GLOBAL_POSITION_INT',
|
|
5983
|
-
fields: [
|
|
5984
|
-
{
|
|
5985
|
-
name: 'time_boot_ms',
|
|
5986
|
-
type: 'uint32_t',
|
|
5987
|
-
},
|
|
5988
|
-
{
|
|
5989
|
-
name: 'lat',
|
|
5990
|
-
type: 'int32_t',
|
|
5991
|
-
},
|
|
5992
|
-
{
|
|
5993
|
-
name: 'lon',
|
|
5994
|
-
type: 'int32_t',
|
|
5995
|
-
},
|
|
5996
|
-
{
|
|
5997
|
-
name: 'alt',
|
|
5998
|
-
type: 'int32_t',
|
|
5999
|
-
},
|
|
6000
|
-
{
|
|
6001
|
-
name: 'relative_alt',
|
|
6002
|
-
type: 'int32_t',
|
|
6003
|
-
},
|
|
6004
|
-
{
|
|
6005
|
-
name: 'vx',
|
|
6006
|
-
type: 'int16_t',
|
|
6007
|
-
},
|
|
6008
|
-
{
|
|
6009
|
-
name: 'vy',
|
|
6010
|
-
type: 'int16_t',
|
|
6011
|
-
},
|
|
6012
|
-
{
|
|
6013
|
-
name: 'vz',
|
|
6014
|
-
type: 'int16_t',
|
|
6015
|
-
},
|
|
6016
|
-
{
|
|
6017
|
-
name: 'hdg',
|
|
6018
|
-
type: 'uint16_t',
|
|
6019
|
-
},
|
|
6020
|
-
]
|
|
6021
|
-
},
|
|
6022
6189
|
{
|
|
6023
6190
|
id: 34,
|
|
6024
6191
|
name: 'RC_CHANNELS_SCALED',
|
|
@@ -6565,11 +6732,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
6565
6732
|
id: 50,
|
|
6566
6733
|
name: 'PARAM_MAP_RC',
|
|
6567
6734
|
fields: [
|
|
6568
|
-
{
|
|
6569
|
-
name: 'param_id',
|
|
6570
|
-
type: 'char',
|
|
6571
|
-
arrayLength: 16,
|
|
6572
|
-
},
|
|
6573
6735
|
{
|
|
6574
6736
|
name: 'param_value0',
|
|
6575
6737
|
type: 'float',
|
|
@@ -6598,6 +6760,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
6598
6760
|
name: 'target_component',
|
|
6599
6761
|
type: 'uint8_t',
|
|
6600
6762
|
},
|
|
6763
|
+
{
|
|
6764
|
+
name: 'param_id',
|
|
6765
|
+
type: 'char',
|
|
6766
|
+
arrayLength: 16,
|
|
6767
|
+
},
|
|
6601
6768
|
{
|
|
6602
6769
|
name: 'parameter_rc_channel_index',
|
|
6603
6770
|
type: 'uint8_t',
|
|
@@ -6708,19 +6875,14 @@ const MESSAGE_DEFINITIONS = [
|
|
|
6708
6875
|
name: 'ATTITUDE_QUATERNION_COV',
|
|
6709
6876
|
fields: [
|
|
6710
6877
|
{
|
|
6711
|
-
name: '
|
|
6712
|
-
type: '
|
|
6713
|
-
arrayLength: 9,
|
|
6878
|
+
name: 'time_usec',
|
|
6879
|
+
type: 'uint64_t',
|
|
6714
6880
|
},
|
|
6715
6881
|
{
|
|
6716
6882
|
name: 'q',
|
|
6717
6883
|
type: 'float',
|
|
6718
6884
|
arrayLength: 4,
|
|
6719
6885
|
},
|
|
6720
|
-
{
|
|
6721
|
-
name: 'time_usec',
|
|
6722
|
-
type: 'uint64_t',
|
|
6723
|
-
},
|
|
6724
6886
|
{
|
|
6725
6887
|
name: 'rollspeed',
|
|
6726
6888
|
type: 'float',
|
|
@@ -6733,6 +6895,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
6733
6895
|
name: 'yawspeed',
|
|
6734
6896
|
type: 'float',
|
|
6735
6897
|
},
|
|
6898
|
+
{
|
|
6899
|
+
name: 'covariance',
|
|
6900
|
+
type: 'float',
|
|
6901
|
+
arrayLength: 9,
|
|
6902
|
+
},
|
|
6736
6903
|
]
|
|
6737
6904
|
},
|
|
6738
6905
|
{
|
|
@@ -6777,11 +6944,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
6777
6944
|
id: 63,
|
|
6778
6945
|
name: 'GLOBAL_POSITION_INT_COV',
|
|
6779
6946
|
fields: [
|
|
6780
|
-
{
|
|
6781
|
-
name: 'covariance',
|
|
6782
|
-
type: 'float',
|
|
6783
|
-
arrayLength: 36,
|
|
6784
|
-
},
|
|
6785
6947
|
{
|
|
6786
6948
|
name: 'time_usec',
|
|
6787
6949
|
type: 'uint64_t',
|
|
@@ -6814,6 +6976,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
6814
6976
|
name: 'vz',
|
|
6815
6977
|
type: 'float',
|
|
6816
6978
|
},
|
|
6979
|
+
{
|
|
6980
|
+
name: 'covariance',
|
|
6981
|
+
type: 'float',
|
|
6982
|
+
arrayLength: 36,
|
|
6983
|
+
},
|
|
6817
6984
|
{
|
|
6818
6985
|
name: 'estimator_type',
|
|
6819
6986
|
type: 'uint8_t',
|
|
@@ -6824,11 +6991,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
6824
6991
|
id: 64,
|
|
6825
6992
|
name: 'LOCAL_POSITION_NED_COV',
|
|
6826
6993
|
fields: [
|
|
6827
|
-
{
|
|
6828
|
-
name: 'covariance',
|
|
6829
|
-
type: 'float',
|
|
6830
|
-
arrayLength: 45,
|
|
6831
|
-
},
|
|
6832
6994
|
{
|
|
6833
6995
|
name: 'time_usec',
|
|
6834
6996
|
type: 'uint64_t',
|
|
@@ -6869,6 +7031,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
6869
7031
|
name: 'az',
|
|
6870
7032
|
type: 'float',
|
|
6871
7033
|
},
|
|
7034
|
+
{
|
|
7035
|
+
name: 'covariance',
|
|
7036
|
+
type: 'float',
|
|
7037
|
+
arrayLength: 45,
|
|
7038
|
+
},
|
|
6872
7039
|
{
|
|
6873
7040
|
name: 'estimator_type',
|
|
6874
7041
|
type: 'uint8_t',
|
|
@@ -7480,15 +7647,15 @@ const MESSAGE_DEFINITIONS = [
|
|
|
7480
7647
|
id: 82,
|
|
7481
7648
|
name: 'SET_ATTITUDE_TARGET',
|
|
7482
7649
|
fields: [
|
|
7650
|
+
{
|
|
7651
|
+
name: 'time_boot_ms',
|
|
7652
|
+
type: 'uint32_t',
|
|
7653
|
+
},
|
|
7483
7654
|
{
|
|
7484
7655
|
name: 'q',
|
|
7485
7656
|
type: 'float',
|
|
7486
7657
|
arrayLength: 4,
|
|
7487
7658
|
},
|
|
7488
|
-
{
|
|
7489
|
-
name: 'time_boot_ms',
|
|
7490
|
-
type: 'uint32_t',
|
|
7491
|
-
},
|
|
7492
7659
|
{
|
|
7493
7660
|
name: 'body_roll_rate',
|
|
7494
7661
|
type: 'float',
|
|
@@ -7529,15 +7696,15 @@ const MESSAGE_DEFINITIONS = [
|
|
|
7529
7696
|
id: 83,
|
|
7530
7697
|
name: 'ATTITUDE_TARGET',
|
|
7531
7698
|
fields: [
|
|
7699
|
+
{
|
|
7700
|
+
name: 'time_boot_ms',
|
|
7701
|
+
type: 'uint32_t',
|
|
7702
|
+
},
|
|
7532
7703
|
{
|
|
7533
7704
|
name: 'q',
|
|
7534
7705
|
type: 'float',
|
|
7535
7706
|
arrayLength: 4,
|
|
7536
7707
|
},
|
|
7537
|
-
{
|
|
7538
|
-
name: 'time_boot_ms',
|
|
7539
|
-
type: 'uint32_t',
|
|
7540
|
-
},
|
|
7541
7708
|
{
|
|
7542
7709
|
name: 'body_roll_rate',
|
|
7543
7710
|
type: 'float',
|
|
@@ -8044,11 +8211,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
8044
8211
|
id: 93,
|
|
8045
8212
|
name: 'HIL_ACTUATOR_CONTROLS',
|
|
8046
8213
|
fields: [
|
|
8047
|
-
{
|
|
8048
|
-
name: 'controls',
|
|
8049
|
-
type: 'float',
|
|
8050
|
-
arrayLength: 16,
|
|
8051
|
-
},
|
|
8052
8214
|
{
|
|
8053
8215
|
name: 'time_usec',
|
|
8054
8216
|
type: 'uint64_t',
|
|
@@ -8057,6 +8219,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
8057
8219
|
name: 'flags',
|
|
8058
8220
|
type: 'uint64_t',
|
|
8059
8221
|
},
|
|
8222
|
+
{
|
|
8223
|
+
name: 'controls',
|
|
8224
|
+
type: 'float',
|
|
8225
|
+
arrayLength: 16,
|
|
8226
|
+
},
|
|
8060
8227
|
{
|
|
8061
8228
|
name: 'mode',
|
|
8062
8229
|
type: 'uint8_t',
|
|
@@ -8608,11 +8775,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
8608
8775
|
id: 110,
|
|
8609
8776
|
name: 'FILE_TRANSFER_PROTOCOL',
|
|
8610
8777
|
fields: [
|
|
8611
|
-
{
|
|
8612
|
-
name: 'payload',
|
|
8613
|
-
type: 'uint8_t',
|
|
8614
|
-
arrayLength: 251,
|
|
8615
|
-
},
|
|
8616
8778
|
{
|
|
8617
8779
|
name: 'target_network',
|
|
8618
8780
|
type: 'uint8_t',
|
|
@@ -8625,6 +8787,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
8625
8787
|
name: 'target_component',
|
|
8626
8788
|
type: 'uint8_t',
|
|
8627
8789
|
},
|
|
8790
|
+
{
|
|
8791
|
+
name: 'payload',
|
|
8792
|
+
type: 'uint8_t',
|
|
8793
|
+
arrayLength: 251,
|
|
8794
|
+
},
|
|
8628
8795
|
]
|
|
8629
8796
|
},
|
|
8630
8797
|
{
|
|
@@ -8791,15 +8958,15 @@ const MESSAGE_DEFINITIONS = [
|
|
|
8791
8958
|
id: 115,
|
|
8792
8959
|
name: 'HIL_STATE_QUATERNION',
|
|
8793
8960
|
fields: [
|
|
8961
|
+
{
|
|
8962
|
+
name: 'time_usec',
|
|
8963
|
+
type: 'uint64_t',
|
|
8964
|
+
},
|
|
8794
8965
|
{
|
|
8795
8966
|
name: 'attitude_quaternion',
|
|
8796
8967
|
type: 'float',
|
|
8797
8968
|
arrayLength: 4,
|
|
8798
8969
|
},
|
|
8799
|
-
{
|
|
8800
|
-
name: 'time_usec',
|
|
8801
|
-
type: 'uint64_t',
|
|
8802
|
-
},
|
|
8803
8970
|
{
|
|
8804
8971
|
name: 'rollspeed',
|
|
8805
8972
|
type: 'float',
|
|
@@ -8987,11 +9154,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
8987
9154
|
id: 120,
|
|
8988
9155
|
name: 'LOG_DATA',
|
|
8989
9156
|
fields: [
|
|
8990
|
-
{
|
|
8991
|
-
name: 'data',
|
|
8992
|
-
type: 'uint8_t',
|
|
8993
|
-
arrayLength: 90,
|
|
8994
|
-
},
|
|
8995
9157
|
{
|
|
8996
9158
|
name: 'ofs',
|
|
8997
9159
|
type: 'uint32_t',
|
|
@@ -9004,6 +9166,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
9004
9166
|
name: 'count',
|
|
9005
9167
|
type: 'uint8_t',
|
|
9006
9168
|
},
|
|
9169
|
+
{
|
|
9170
|
+
name: 'data',
|
|
9171
|
+
type: 'uint8_t',
|
|
9172
|
+
arrayLength: 90,
|
|
9173
|
+
},
|
|
9007
9174
|
]
|
|
9008
9175
|
},
|
|
9009
9176
|
{
|
|
@@ -9038,11 +9205,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
9038
9205
|
id: 123,
|
|
9039
9206
|
name: 'GPS_INJECT_DATA',
|
|
9040
9207
|
fields: [
|
|
9041
|
-
{
|
|
9042
|
-
name: 'data',
|
|
9043
|
-
type: 'uint8_t',
|
|
9044
|
-
arrayLength: 110,
|
|
9045
|
-
},
|
|
9046
9208
|
{
|
|
9047
9209
|
name: 'target_system',
|
|
9048
9210
|
type: 'uint8_t',
|
|
@@ -9055,6 +9217,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
9055
9217
|
name: 'len',
|
|
9056
9218
|
type: 'uint8_t',
|
|
9057
9219
|
},
|
|
9220
|
+
{
|
|
9221
|
+
name: 'data',
|
|
9222
|
+
type: 'uint8_t',
|
|
9223
|
+
arrayLength: 110,
|
|
9224
|
+
},
|
|
9058
9225
|
]
|
|
9059
9226
|
},
|
|
9060
9227
|
{
|
|
@@ -9163,11 +9330,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
9163
9330
|
id: 126,
|
|
9164
9331
|
name: 'SERIAL_CONTROL',
|
|
9165
9332
|
fields: [
|
|
9166
|
-
{
|
|
9167
|
-
name: 'data',
|
|
9168
|
-
type: 'uint8_t',
|
|
9169
|
-
arrayLength: 70,
|
|
9170
|
-
},
|
|
9171
9333
|
{
|
|
9172
9334
|
name: 'baudrate',
|
|
9173
9335
|
type: 'uint32_t',
|
|
@@ -9188,6 +9350,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
9188
9350
|
name: 'count',
|
|
9189
9351
|
type: 'uint8_t',
|
|
9190
9352
|
},
|
|
9353
|
+
{
|
|
9354
|
+
name: 'data',
|
|
9355
|
+
type: 'uint8_t',
|
|
9356
|
+
arrayLength: 70,
|
|
9357
|
+
},
|
|
9191
9358
|
{
|
|
9192
9359
|
name: 'target_system',
|
|
9193
9360
|
type: 'uint8_t',
|
|
@@ -9405,15 +9572,15 @@ const MESSAGE_DEFINITIONS = [
|
|
|
9405
9572
|
id: 131,
|
|
9406
9573
|
name: 'ENCAPSULATED_DATA',
|
|
9407
9574
|
fields: [
|
|
9575
|
+
{
|
|
9576
|
+
name: 'seqnr',
|
|
9577
|
+
type: 'uint16_t',
|
|
9578
|
+
},
|
|
9408
9579
|
{
|
|
9409
9580
|
name: 'data',
|
|
9410
9581
|
type: 'uint8_t',
|
|
9411
9582
|
arrayLength: 253,
|
|
9412
9583
|
},
|
|
9413
|
-
{
|
|
9414
|
-
name: 'seqnr',
|
|
9415
|
-
type: 'uint16_t',
|
|
9416
|
-
},
|
|
9417
9584
|
]
|
|
9418
9585
|
},
|
|
9419
9586
|
{
|
|
@@ -9501,11 +9668,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
9501
9668
|
id: 134,
|
|
9502
9669
|
name: 'TERRAIN_DATA',
|
|
9503
9670
|
fields: [
|
|
9504
|
-
{
|
|
9505
|
-
name: 'data',
|
|
9506
|
-
type: 'int16_t',
|
|
9507
|
-
arrayLength: 16,
|
|
9508
|
-
},
|
|
9509
9671
|
{
|
|
9510
9672
|
name: 'lat',
|
|
9511
9673
|
type: 'int32_t',
|
|
@@ -9518,6 +9680,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
9518
9680
|
name: 'grid_spacing',
|
|
9519
9681
|
type: 'uint16_t',
|
|
9520
9682
|
},
|
|
9683
|
+
{
|
|
9684
|
+
name: 'data',
|
|
9685
|
+
type: 'int16_t',
|
|
9686
|
+
arrayLength: 16,
|
|
9687
|
+
},
|
|
9521
9688
|
{
|
|
9522
9689
|
name: 'gridbit',
|
|
9523
9690
|
type: 'uint8_t',
|
|
@@ -9603,15 +9770,15 @@ const MESSAGE_DEFINITIONS = [
|
|
|
9603
9770
|
id: 138,
|
|
9604
9771
|
name: 'ATT_POS_MOCAP',
|
|
9605
9772
|
fields: [
|
|
9773
|
+
{
|
|
9774
|
+
name: 'time_usec',
|
|
9775
|
+
type: 'uint64_t',
|
|
9776
|
+
},
|
|
9606
9777
|
{
|
|
9607
9778
|
name: 'q',
|
|
9608
9779
|
type: 'float',
|
|
9609
9780
|
arrayLength: 4,
|
|
9610
9781
|
},
|
|
9611
|
-
{
|
|
9612
|
-
name: 'time_usec',
|
|
9613
|
-
type: 'uint64_t',
|
|
9614
|
-
},
|
|
9615
9782
|
{
|
|
9616
9783
|
name: 'x',
|
|
9617
9784
|
type: 'float',
|
|
@@ -9636,15 +9803,15 @@ const MESSAGE_DEFINITIONS = [
|
|
|
9636
9803
|
id: 139,
|
|
9637
9804
|
name: 'SET_ACTUATOR_CONTROL_TARGET',
|
|
9638
9805
|
fields: [
|
|
9806
|
+
{
|
|
9807
|
+
name: 'time_usec',
|
|
9808
|
+
type: 'uint64_t',
|
|
9809
|
+
},
|
|
9639
9810
|
{
|
|
9640
9811
|
name: 'controls',
|
|
9641
9812
|
type: 'float',
|
|
9642
9813
|
arrayLength: 8,
|
|
9643
9814
|
},
|
|
9644
|
-
{
|
|
9645
|
-
name: 'time_usec',
|
|
9646
|
-
type: 'uint64_t',
|
|
9647
|
-
},
|
|
9648
9815
|
{
|
|
9649
9816
|
name: 'group_mlx',
|
|
9650
9817
|
type: 'uint8_t',
|
|
@@ -9663,15 +9830,15 @@ const MESSAGE_DEFINITIONS = [
|
|
|
9663
9830
|
id: 140,
|
|
9664
9831
|
name: 'ACTUATOR_CONTROL_TARGET',
|
|
9665
9832
|
fields: [
|
|
9833
|
+
{
|
|
9834
|
+
name: 'time_usec',
|
|
9835
|
+
type: 'uint64_t',
|
|
9836
|
+
},
|
|
9666
9837
|
{
|
|
9667
9838
|
name: 'controls',
|
|
9668
9839
|
type: 'float',
|
|
9669
9840
|
arrayLength: 8,
|
|
9670
9841
|
},
|
|
9671
|
-
{
|
|
9672
|
-
name: 'time_usec',
|
|
9673
|
-
type: 'uint64_t',
|
|
9674
|
-
},
|
|
9675
9842
|
{
|
|
9676
9843
|
name: 'group_mlx',
|
|
9677
9844
|
type: 'uint8_t',
|
|
@@ -9717,26 +9884,26 @@ const MESSAGE_DEFINITIONS = [
|
|
|
9717
9884
|
name: 'RESOURCE_REQUEST',
|
|
9718
9885
|
fields: [
|
|
9719
9886
|
{
|
|
9720
|
-
name: '
|
|
9887
|
+
name: 'request_id',
|
|
9721
9888
|
type: 'uint8_t',
|
|
9722
|
-
arrayLength: 120,
|
|
9723
9889
|
},
|
|
9724
9890
|
{
|
|
9725
|
-
name: '
|
|
9891
|
+
name: 'uri_type',
|
|
9726
9892
|
type: 'uint8_t',
|
|
9727
|
-
arrayLength: 120,
|
|
9728
9893
|
},
|
|
9729
9894
|
{
|
|
9730
|
-
name: '
|
|
9895
|
+
name: 'uri',
|
|
9731
9896
|
type: 'uint8_t',
|
|
9897
|
+
arrayLength: 120,
|
|
9732
9898
|
},
|
|
9733
9899
|
{
|
|
9734
|
-
name: '
|
|
9900
|
+
name: 'transfer_type',
|
|
9735
9901
|
type: 'uint8_t',
|
|
9736
9902
|
},
|
|
9737
9903
|
{
|
|
9738
|
-
name: '
|
|
9904
|
+
name: 'storage',
|
|
9739
9905
|
type: 'uint8_t',
|
|
9906
|
+
arrayLength: 120,
|
|
9740
9907
|
},
|
|
9741
9908
|
]
|
|
9742
9909
|
},
|
|
@@ -9772,49 +9939,49 @@ const MESSAGE_DEFINITIONS = [
|
|
|
9772
9939
|
name: 'FOLLOW_TARGET',
|
|
9773
9940
|
fields: [
|
|
9774
9941
|
{
|
|
9775
|
-
name: '
|
|
9776
|
-
type: '
|
|
9777
|
-
arrayLength: 4,
|
|
9942
|
+
name: 'timestamp',
|
|
9943
|
+
type: 'uint64_t',
|
|
9778
9944
|
},
|
|
9779
9945
|
{
|
|
9780
|
-
name: '
|
|
9781
|
-
type: '
|
|
9782
|
-
arrayLength: 3,
|
|
9946
|
+
name: 'custom_state',
|
|
9947
|
+
type: 'uint64_t',
|
|
9783
9948
|
},
|
|
9784
9949
|
{
|
|
9785
|
-
name: '
|
|
9786
|
-
type: '
|
|
9787
|
-
arrayLength: 3,
|
|
9950
|
+
name: 'lat',
|
|
9951
|
+
type: 'int32_t',
|
|
9788
9952
|
},
|
|
9789
9953
|
{
|
|
9790
|
-
name: '
|
|
9791
|
-
type: '
|
|
9792
|
-
arrayLength: 3,
|
|
9954
|
+
name: 'lon',
|
|
9955
|
+
type: 'int32_t',
|
|
9793
9956
|
},
|
|
9794
9957
|
{
|
|
9795
|
-
name: '
|
|
9958
|
+
name: 'alt',
|
|
9796
9959
|
type: 'float',
|
|
9797
|
-
arrayLength: 3,
|
|
9798
9960
|
},
|
|
9799
9961
|
{
|
|
9800
|
-
name: '
|
|
9801
|
-
type: '
|
|
9962
|
+
name: 'vel',
|
|
9963
|
+
type: 'float',
|
|
9964
|
+
arrayLength: 3,
|
|
9802
9965
|
},
|
|
9803
9966
|
{
|
|
9804
|
-
name: '
|
|
9805
|
-
type: '
|
|
9967
|
+
name: 'acc',
|
|
9968
|
+
type: 'float',
|
|
9969
|
+
arrayLength: 3,
|
|
9806
9970
|
},
|
|
9807
9971
|
{
|
|
9808
|
-
name: '
|
|
9809
|
-
type: '
|
|
9972
|
+
name: 'attitude_q',
|
|
9973
|
+
type: 'float',
|
|
9974
|
+
arrayLength: 4,
|
|
9810
9975
|
},
|
|
9811
9976
|
{
|
|
9812
|
-
name: '
|
|
9813
|
-
type: '
|
|
9977
|
+
name: 'rates',
|
|
9978
|
+
type: 'float',
|
|
9979
|
+
arrayLength: 3,
|
|
9814
9980
|
},
|
|
9815
9981
|
{
|
|
9816
|
-
name: '
|
|
9982
|
+
name: 'position_cov',
|
|
9817
9983
|
type: 'float',
|
|
9984
|
+
arrayLength: 3,
|
|
9818
9985
|
},
|
|
9819
9986
|
{
|
|
9820
9987
|
name: 'est_capabilities',
|
|
@@ -9826,21 +9993,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
9826
9993
|
id: 146,
|
|
9827
9994
|
name: 'CONTROL_SYSTEM_STATE',
|
|
9828
9995
|
fields: [
|
|
9829
|
-
{
|
|
9830
|
-
name: 'q',
|
|
9831
|
-
type: 'float',
|
|
9832
|
-
arrayLength: 4,
|
|
9833
|
-
},
|
|
9834
|
-
{
|
|
9835
|
-
name: 'vel_variance',
|
|
9836
|
-
type: 'float',
|
|
9837
|
-
arrayLength: 3,
|
|
9838
|
-
},
|
|
9839
|
-
{
|
|
9840
|
-
name: 'pos_variance',
|
|
9841
|
-
type: 'float',
|
|
9842
|
-
arrayLength: 3,
|
|
9843
|
-
},
|
|
9844
9996
|
{
|
|
9845
9997
|
name: 'time_usec',
|
|
9846
9998
|
type: 'uint64_t',
|
|
@@ -9885,6 +10037,21 @@ const MESSAGE_DEFINITIONS = [
|
|
|
9885
10037
|
name: 'airspeed',
|
|
9886
10038
|
type: 'float',
|
|
9887
10039
|
},
|
|
10040
|
+
{
|
|
10041
|
+
name: 'vel_variance',
|
|
10042
|
+
type: 'float',
|
|
10043
|
+
arrayLength: 3,
|
|
10044
|
+
},
|
|
10045
|
+
{
|
|
10046
|
+
name: 'pos_variance',
|
|
10047
|
+
type: 'float',
|
|
10048
|
+
arrayLength: 3,
|
|
10049
|
+
},
|
|
10050
|
+
{
|
|
10051
|
+
name: 'q',
|
|
10052
|
+
type: 'float',
|
|
10053
|
+
arrayLength: 4,
|
|
10054
|
+
},
|
|
9888
10055
|
{
|
|
9889
10056
|
name: 'roll_rate',
|
|
9890
10057
|
type: 'float',
|
|
@@ -9903,11 +10070,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
9903
10070
|
id: 147,
|
|
9904
10071
|
name: 'BATTERY_STATUS',
|
|
9905
10072
|
fields: [
|
|
9906
|
-
{
|
|
9907
|
-
name: 'voltages',
|
|
9908
|
-
type: 'uint16_t',
|
|
9909
|
-
arrayLength: 10,
|
|
9910
|
-
},
|
|
9911
10073
|
{
|
|
9912
10074
|
name: 'current_consumed',
|
|
9913
10075
|
type: 'int32_t',
|
|
@@ -9920,6 +10082,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
9920
10082
|
name: 'temperature',
|
|
9921
10083
|
type: 'int16_t',
|
|
9922
10084
|
},
|
|
10085
|
+
{
|
|
10086
|
+
name: 'voltages',
|
|
10087
|
+
type: 'uint16_t',
|
|
10088
|
+
arrayLength: 10,
|
|
10089
|
+
},
|
|
9923
10090
|
{
|
|
9924
10091
|
name: 'current_battery',
|
|
9925
10092
|
type: 'int16_t',
|
|
@@ -9968,65 +10135,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
9968
10135
|
},
|
|
9969
10136
|
]
|
|
9970
10137
|
},
|
|
9971
|
-
{
|
|
9972
|
-
id: 148,
|
|
9973
|
-
name: 'AUTOPILOT_VERSION',
|
|
9974
|
-
fields: [
|
|
9975
|
-
{
|
|
9976
|
-
name: 'capabilities',
|
|
9977
|
-
type: 'uint64_t',
|
|
9978
|
-
},
|
|
9979
|
-
{
|
|
9980
|
-
name: 'flight_custom_version',
|
|
9981
|
-
type: 'uint8_t',
|
|
9982
|
-
arrayLength: 8,
|
|
9983
|
-
},
|
|
9984
|
-
{
|
|
9985
|
-
name: 'middleware_custom_version',
|
|
9986
|
-
type: 'uint8_t',
|
|
9987
|
-
arrayLength: 8,
|
|
9988
|
-
},
|
|
9989
|
-
{
|
|
9990
|
-
name: 'os_custom_version',
|
|
9991
|
-
type: 'uint8_t',
|
|
9992
|
-
arrayLength: 8,
|
|
9993
|
-
},
|
|
9994
|
-
{
|
|
9995
|
-
name: 'uid',
|
|
9996
|
-
type: 'uint64_t',
|
|
9997
|
-
},
|
|
9998
|
-
{
|
|
9999
|
-
name: 'flight_sw_version',
|
|
10000
|
-
type: 'uint32_t',
|
|
10001
|
-
},
|
|
10002
|
-
{
|
|
10003
|
-
name: 'middleware_sw_version',
|
|
10004
|
-
type: 'uint32_t',
|
|
10005
|
-
},
|
|
10006
|
-
{
|
|
10007
|
-
name: 'os_sw_version',
|
|
10008
|
-
type: 'uint32_t',
|
|
10009
|
-
},
|
|
10010
|
-
{
|
|
10011
|
-
name: 'board_version',
|
|
10012
|
-
type: 'uint32_t',
|
|
10013
|
-
},
|
|
10014
|
-
{
|
|
10015
|
-
name: 'vendor_id',
|
|
10016
|
-
type: 'uint16_t',
|
|
10017
|
-
},
|
|
10018
|
-
{
|
|
10019
|
-
name: 'product_id',
|
|
10020
|
-
type: 'uint16_t',
|
|
10021
|
-
},
|
|
10022
|
-
{
|
|
10023
|
-
name: 'uid2',
|
|
10024
|
-
type: 'uint8_t',
|
|
10025
|
-
arrayLength: 18,
|
|
10026
|
-
extension: true,
|
|
10027
|
-
},
|
|
10028
|
-
]
|
|
10029
|
-
},
|
|
10030
10138
|
{
|
|
10031
10139
|
id: 149,
|
|
10032
10140
|
name: 'LANDING_TARGET',
|
|
@@ -10465,17 +10573,17 @@ const MESSAGE_DEFINITIONS = [
|
|
|
10465
10573
|
name: 'GPS_RTCM_DATA',
|
|
10466
10574
|
fields: [
|
|
10467
10575
|
{
|
|
10468
|
-
name: '
|
|
10576
|
+
name: 'flags',
|
|
10469
10577
|
type: 'uint8_t',
|
|
10470
|
-
arrayLength: 180,
|
|
10471
10578
|
},
|
|
10472
10579
|
{
|
|
10473
|
-
name: '
|
|
10580
|
+
name: 'len',
|
|
10474
10581
|
type: 'uint8_t',
|
|
10475
10582
|
},
|
|
10476
10583
|
{
|
|
10477
|
-
name: '
|
|
10584
|
+
name: 'data',
|
|
10478
10585
|
type: 'uint8_t',
|
|
10586
|
+
arrayLength: 180,
|
|
10479
10587
|
},
|
|
10480
10588
|
]
|
|
10481
10589
|
},
|
|
@@ -10733,11 +10841,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
10733
10841
|
id: 242,
|
|
10734
10842
|
name: 'HOME_POSITION',
|
|
10735
10843
|
fields: [
|
|
10736
|
-
{
|
|
10737
|
-
name: 'q',
|
|
10738
|
-
type: 'float',
|
|
10739
|
-
arrayLength: 4,
|
|
10740
|
-
},
|
|
10741
10844
|
{
|
|
10742
10845
|
name: 'latitude',
|
|
10743
10846
|
type: 'int32_t',
|
|
@@ -10762,6 +10865,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
10762
10865
|
name: 'z',
|
|
10763
10866
|
type: 'float',
|
|
10764
10867
|
},
|
|
10868
|
+
{
|
|
10869
|
+
name: 'q',
|
|
10870
|
+
type: 'float',
|
|
10871
|
+
arrayLength: 4,
|
|
10872
|
+
},
|
|
10765
10873
|
{
|
|
10766
10874
|
name: 'approach_x',
|
|
10767
10875
|
type: 'float',
|
|
@@ -10785,11 +10893,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
10785
10893
|
id: 243,
|
|
10786
10894
|
name: 'SET_HOME_POSITION',
|
|
10787
10895
|
fields: [
|
|
10788
|
-
{
|
|
10789
|
-
name: 'q',
|
|
10790
|
-
type: 'float',
|
|
10791
|
-
arrayLength: 4,
|
|
10792
|
-
},
|
|
10793
10896
|
{
|
|
10794
10897
|
name: 'latitude',
|
|
10795
10898
|
type: 'int32_t',
|
|
@@ -10814,6 +10917,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
10814
10917
|
name: 'z',
|
|
10815
10918
|
type: 'float',
|
|
10816
10919
|
},
|
|
10920
|
+
{
|
|
10921
|
+
name: 'q',
|
|
10922
|
+
type: 'float',
|
|
10923
|
+
arrayLength: 4,
|
|
10924
|
+
},
|
|
10817
10925
|
{
|
|
10818
10926
|
name: 'approach_x',
|
|
10819
10927
|
type: 'float',
|
|
@@ -10869,11 +10977,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
10869
10977
|
id: 246,
|
|
10870
10978
|
name: 'ADSB_VEHICLE',
|
|
10871
10979
|
fields: [
|
|
10872
|
-
{
|
|
10873
|
-
name: 'callsign',
|
|
10874
|
-
type: 'char',
|
|
10875
|
-
arrayLength: 9,
|
|
10876
|
-
},
|
|
10877
10980
|
{
|
|
10878
10981
|
name: 'icao_address',
|
|
10879
10982
|
type: 'uint32_t',
|
|
@@ -10914,6 +11017,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
10914
11017
|
name: 'altitude_type',
|
|
10915
11018
|
type: 'uint8_t',
|
|
10916
11019
|
},
|
|
11020
|
+
{
|
|
11021
|
+
name: 'callsign',
|
|
11022
|
+
type: 'char',
|
|
11023
|
+
arrayLength: 9,
|
|
11024
|
+
},
|
|
10917
11025
|
{
|
|
10918
11026
|
name: 'emitter_type',
|
|
10919
11027
|
type: 'uint8_t',
|
|
@@ -10962,11 +11070,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
10962
11070
|
id: 248,
|
|
10963
11071
|
name: 'V2_EXTENSION',
|
|
10964
11072
|
fields: [
|
|
10965
|
-
{
|
|
10966
|
-
name: 'payload',
|
|
10967
|
-
type: 'uint8_t',
|
|
10968
|
-
arrayLength: 249,
|
|
10969
|
-
},
|
|
10970
11073
|
{
|
|
10971
11074
|
name: 'message_type',
|
|
10972
11075
|
type: 'uint16_t',
|
|
@@ -10983,17 +11086,17 @@ const MESSAGE_DEFINITIONS = [
|
|
|
10983
11086
|
name: 'target_component',
|
|
10984
11087
|
type: 'uint8_t',
|
|
10985
11088
|
},
|
|
11089
|
+
{
|
|
11090
|
+
name: 'payload',
|
|
11091
|
+
type: 'uint8_t',
|
|
11092
|
+
arrayLength: 249,
|
|
11093
|
+
},
|
|
10986
11094
|
]
|
|
10987
11095
|
},
|
|
10988
11096
|
{
|
|
10989
11097
|
id: 249,
|
|
10990
11098
|
name: 'MEMORY_VECT',
|
|
10991
11099
|
fields: [
|
|
10992
|
-
{
|
|
10993
|
-
name: 'value',
|
|
10994
|
-
type: 'int8_t',
|
|
10995
|
-
arrayLength: 32,
|
|
10996
|
-
},
|
|
10997
11100
|
{
|
|
10998
11101
|
name: 'address',
|
|
10999
11102
|
type: 'uint16_t',
|
|
@@ -11006,17 +11109,17 @@ const MESSAGE_DEFINITIONS = [
|
|
|
11006
11109
|
name: 'type',
|
|
11007
11110
|
type: 'uint8_t',
|
|
11008
11111
|
},
|
|
11112
|
+
{
|
|
11113
|
+
name: 'value',
|
|
11114
|
+
type: 'int8_t',
|
|
11115
|
+
arrayLength: 32,
|
|
11116
|
+
},
|
|
11009
11117
|
]
|
|
11010
11118
|
},
|
|
11011
11119
|
{
|
|
11012
11120
|
id: 250,
|
|
11013
11121
|
name: 'DEBUG_VECT',
|
|
11014
11122
|
fields: [
|
|
11015
|
-
{
|
|
11016
|
-
name: 'name',
|
|
11017
|
-
type: 'char',
|
|
11018
|
-
arrayLength: 10,
|
|
11019
|
-
},
|
|
11020
11123
|
{
|
|
11021
11124
|
name: 'time_usec',
|
|
11022
11125
|
type: 'uint64_t',
|
|
@@ -11033,17 +11136,17 @@ const MESSAGE_DEFINITIONS = [
|
|
|
11033
11136
|
name: 'z',
|
|
11034
11137
|
type: 'float',
|
|
11035
11138
|
},
|
|
11139
|
+
{
|
|
11140
|
+
name: 'name',
|
|
11141
|
+
type: 'char',
|
|
11142
|
+
arrayLength: 10,
|
|
11143
|
+
},
|
|
11036
11144
|
]
|
|
11037
11145
|
},
|
|
11038
11146
|
{
|
|
11039
11147
|
id: 251,
|
|
11040
11148
|
name: 'NAMED_VALUE_FLOAT',
|
|
11041
11149
|
fields: [
|
|
11042
|
-
{
|
|
11043
|
-
name: 'name',
|
|
11044
|
-
type: 'char',
|
|
11045
|
-
arrayLength: 10,
|
|
11046
|
-
},
|
|
11047
11150
|
{
|
|
11048
11151
|
name: 'time_boot_ms',
|
|
11049
11152
|
type: 'uint32_t',
|
|
@@ -11052,17 +11155,17 @@ const MESSAGE_DEFINITIONS = [
|
|
|
11052
11155
|
name: 'value',
|
|
11053
11156
|
type: 'float',
|
|
11054
11157
|
},
|
|
11158
|
+
{
|
|
11159
|
+
name: 'name',
|
|
11160
|
+
type: 'char',
|
|
11161
|
+
arrayLength: 10,
|
|
11162
|
+
},
|
|
11055
11163
|
]
|
|
11056
11164
|
},
|
|
11057
11165
|
{
|
|
11058
11166
|
id: 252,
|
|
11059
11167
|
name: 'NAMED_VALUE_INT',
|
|
11060
11168
|
fields: [
|
|
11061
|
-
{
|
|
11062
|
-
name: 'name',
|
|
11063
|
-
type: 'char',
|
|
11064
|
-
arrayLength: 10,
|
|
11065
|
-
},
|
|
11066
11169
|
{
|
|
11067
11170
|
name: 'time_boot_ms',
|
|
11068
11171
|
type: 'uint32_t',
|
|
@@ -11071,21 +11174,26 @@ const MESSAGE_DEFINITIONS = [
|
|
|
11071
11174
|
name: 'value',
|
|
11072
11175
|
type: 'int32_t',
|
|
11073
11176
|
},
|
|
11177
|
+
{
|
|
11178
|
+
name: 'name',
|
|
11179
|
+
type: 'char',
|
|
11180
|
+
arrayLength: 10,
|
|
11181
|
+
},
|
|
11074
11182
|
]
|
|
11075
11183
|
},
|
|
11076
11184
|
{
|
|
11077
11185
|
id: 253,
|
|
11078
11186
|
name: 'STATUSTEXT',
|
|
11079
11187
|
fields: [
|
|
11188
|
+
{
|
|
11189
|
+
name: 'severity',
|
|
11190
|
+
type: 'uint8_t',
|
|
11191
|
+
},
|
|
11080
11192
|
{
|
|
11081
11193
|
name: 'text',
|
|
11082
11194
|
type: 'char',
|
|
11083
11195
|
arrayLength: 50,
|
|
11084
11196
|
},
|
|
11085
|
-
{
|
|
11086
|
-
name: 'severity',
|
|
11087
|
-
type: 'uint8_t',
|
|
11088
|
-
},
|
|
11089
11197
|
{
|
|
11090
11198
|
name: 'id',
|
|
11091
11199
|
type: 'uint16_t',
|
|
@@ -11120,11 +11228,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
11120
11228
|
id: 256,
|
|
11121
11229
|
name: 'SETUP_SIGNING',
|
|
11122
11230
|
fields: [
|
|
11123
|
-
{
|
|
11124
|
-
name: 'secret_key',
|
|
11125
|
-
type: 'uint8_t',
|
|
11126
|
-
arrayLength: 32,
|
|
11127
|
-
},
|
|
11128
11231
|
{
|
|
11129
11232
|
name: 'initial_timestamp',
|
|
11130
11233
|
type: 'uint64_t',
|
|
@@ -11137,6 +11240,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
11137
11240
|
name: 'target_component',
|
|
11138
11241
|
type: 'uint8_t',
|
|
11139
11242
|
},
|
|
11243
|
+
{
|
|
11244
|
+
name: 'secret_key',
|
|
11245
|
+
type: 'uint8_t',
|
|
11246
|
+
arrayLength: 32,
|
|
11247
|
+
},
|
|
11140
11248
|
]
|
|
11141
11249
|
},
|
|
11142
11250
|
{
|
|
@@ -11161,11 +11269,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
11161
11269
|
id: 258,
|
|
11162
11270
|
name: 'PLAY_TUNE',
|
|
11163
11271
|
fields: [
|
|
11164
|
-
{
|
|
11165
|
-
name: 'tune',
|
|
11166
|
-
type: 'char',
|
|
11167
|
-
arrayLength: 30,
|
|
11168
|
-
},
|
|
11169
11272
|
{
|
|
11170
11273
|
name: 'target_system',
|
|
11171
11274
|
type: 'uint8_t',
|
|
@@ -11174,6 +11277,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
11174
11277
|
name: 'target_component',
|
|
11175
11278
|
type: 'uint8_t',
|
|
11176
11279
|
},
|
|
11280
|
+
{
|
|
11281
|
+
name: 'tune',
|
|
11282
|
+
type: 'char',
|
|
11283
|
+
arrayLength: 30,
|
|
11284
|
+
},
|
|
11177
11285
|
{
|
|
11178
11286
|
name: 'tune2',
|
|
11179
11287
|
type: 'char',
|
|
@@ -11187,27 +11295,12 @@ const MESSAGE_DEFINITIONS = [
|
|
|
11187
11295
|
name: 'CAMERA_INFORMATION',
|
|
11188
11296
|
fields: [
|
|
11189
11297
|
{
|
|
11190
|
-
name: '
|
|
11191
|
-
type: '
|
|
11192
|
-
arrayLength: 140,
|
|
11298
|
+
name: 'time_boot_ms',
|
|
11299
|
+
type: 'uint32_t',
|
|
11193
11300
|
},
|
|
11194
11301
|
{
|
|
11195
|
-
name: '
|
|
11196
|
-
type: '
|
|
11197
|
-
arrayLength: 32,
|
|
11198
|
-
},
|
|
11199
|
-
{
|
|
11200
|
-
name: 'model_name',
|
|
11201
|
-
type: 'uint8_t',
|
|
11202
|
-
arrayLength: 32,
|
|
11203
|
-
},
|
|
11204
|
-
{
|
|
11205
|
-
name: 'time_boot_ms',
|
|
11206
|
-
type: 'uint32_t',
|
|
11207
|
-
},
|
|
11208
|
-
{
|
|
11209
|
-
name: 'firmware_version',
|
|
11210
|
-
type: 'uint32_t',
|
|
11302
|
+
name: 'firmware_version',
|
|
11303
|
+
type: 'uint32_t',
|
|
11211
11304
|
},
|
|
11212
11305
|
{
|
|
11213
11306
|
name: 'focal_length',
|
|
@@ -11237,10 +11330,25 @@ const MESSAGE_DEFINITIONS = [
|
|
|
11237
11330
|
name: 'cam_definition_version',
|
|
11238
11331
|
type: 'uint16_t',
|
|
11239
11332
|
},
|
|
11333
|
+
{
|
|
11334
|
+
name: 'vendor_name',
|
|
11335
|
+
type: 'uint8_t',
|
|
11336
|
+
arrayLength: 32,
|
|
11337
|
+
},
|
|
11338
|
+
{
|
|
11339
|
+
name: 'model_name',
|
|
11340
|
+
type: 'uint8_t',
|
|
11341
|
+
arrayLength: 32,
|
|
11342
|
+
},
|
|
11240
11343
|
{
|
|
11241
11344
|
name: 'lens_id',
|
|
11242
11345
|
type: 'uint8_t',
|
|
11243
11346
|
},
|
|
11347
|
+
{
|
|
11348
|
+
name: 'cam_definition_uri',
|
|
11349
|
+
type: 'char',
|
|
11350
|
+
arrayLength: 140,
|
|
11351
|
+
},
|
|
11244
11352
|
{
|
|
11245
11353
|
name: 'gimbal_device_id',
|
|
11246
11354
|
type: 'uint8_t',
|
|
@@ -11384,16 +11492,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
11384
11492
|
id: 263,
|
|
11385
11493
|
name: 'CAMERA_IMAGE_CAPTURED',
|
|
11386
11494
|
fields: [
|
|
11387
|
-
{
|
|
11388
|
-
name: 'file_url',
|
|
11389
|
-
type: 'char',
|
|
11390
|
-
arrayLength: 205,
|
|
11391
|
-
},
|
|
11392
|
-
{
|
|
11393
|
-
name: 'q',
|
|
11394
|
-
type: 'float',
|
|
11395
|
-
arrayLength: 4,
|
|
11396
|
-
},
|
|
11397
11495
|
{
|
|
11398
11496
|
name: 'time_utc',
|
|
11399
11497
|
type: 'uint64_t',
|
|
@@ -11418,6 +11516,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
11418
11516
|
name: 'relative_alt',
|
|
11419
11517
|
type: 'int32_t',
|
|
11420
11518
|
},
|
|
11519
|
+
{
|
|
11520
|
+
name: 'q',
|
|
11521
|
+
type: 'float',
|
|
11522
|
+
arrayLength: 4,
|
|
11523
|
+
},
|
|
11421
11524
|
{
|
|
11422
11525
|
name: 'image_index',
|
|
11423
11526
|
type: 'int32_t',
|
|
@@ -11430,6 +11533,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
11430
11533
|
name: 'capture_result',
|
|
11431
11534
|
type: 'int8_t',
|
|
11432
11535
|
},
|
|
11536
|
+
{
|
|
11537
|
+
name: 'file_url',
|
|
11538
|
+
type: 'char',
|
|
11539
|
+
arrayLength: 205,
|
|
11540
|
+
},
|
|
11433
11541
|
]
|
|
11434
11542
|
},
|
|
11435
11543
|
{
|
|
@@ -11490,11 +11598,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
11490
11598
|
id: 266,
|
|
11491
11599
|
name: 'LOGGING_DATA',
|
|
11492
11600
|
fields: [
|
|
11493
|
-
{
|
|
11494
|
-
name: 'data',
|
|
11495
|
-
type: 'uint8_t',
|
|
11496
|
-
arrayLength: 249,
|
|
11497
|
-
},
|
|
11498
11601
|
{
|
|
11499
11602
|
name: 'sequence',
|
|
11500
11603
|
type: 'uint16_t',
|
|
@@ -11515,17 +11618,17 @@ const MESSAGE_DEFINITIONS = [
|
|
|
11515
11618
|
name: 'first_message_offset',
|
|
11516
11619
|
type: 'uint8_t',
|
|
11517
11620
|
},
|
|
11621
|
+
{
|
|
11622
|
+
name: 'data',
|
|
11623
|
+
type: 'uint8_t',
|
|
11624
|
+
arrayLength: 249,
|
|
11625
|
+
},
|
|
11518
11626
|
]
|
|
11519
11627
|
},
|
|
11520
11628
|
{
|
|
11521
11629
|
id: 267,
|
|
11522
11630
|
name: 'LOGGING_DATA_ACKED',
|
|
11523
11631
|
fields: [
|
|
11524
|
-
{
|
|
11525
|
-
name: 'data',
|
|
11526
|
-
type: 'uint8_t',
|
|
11527
|
-
arrayLength: 249,
|
|
11528
|
-
},
|
|
11529
11632
|
{
|
|
11530
11633
|
name: 'sequence',
|
|
11531
11634
|
type: 'uint16_t',
|
|
@@ -11546,6 +11649,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
11546
11649
|
name: 'first_message_offset',
|
|
11547
11650
|
type: 'uint8_t',
|
|
11548
11651
|
},
|
|
11652
|
+
{
|
|
11653
|
+
name: 'data',
|
|
11654
|
+
type: 'uint8_t',
|
|
11655
|
+
arrayLength: 249,
|
|
11656
|
+
},
|
|
11549
11657
|
]
|
|
11550
11658
|
},
|
|
11551
11659
|
{
|
|
@@ -11570,16 +11678,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
11570
11678
|
id: 269,
|
|
11571
11679
|
name: 'VIDEO_STREAM_INFORMATION',
|
|
11572
11680
|
fields: [
|
|
11573
|
-
{
|
|
11574
|
-
name: 'uri',
|
|
11575
|
-
type: 'char',
|
|
11576
|
-
arrayLength: 160,
|
|
11577
|
-
},
|
|
11578
|
-
{
|
|
11579
|
-
name: 'name',
|
|
11580
|
-
type: 'char',
|
|
11581
|
-
arrayLength: 32,
|
|
11582
|
-
},
|
|
11583
11681
|
{
|
|
11584
11682
|
name: 'framerate',
|
|
11585
11683
|
type: 'float',
|
|
@@ -11620,6 +11718,16 @@ const MESSAGE_DEFINITIONS = [
|
|
|
11620
11718
|
name: 'type',
|
|
11621
11719
|
type: 'uint8_t',
|
|
11622
11720
|
},
|
|
11721
|
+
{
|
|
11722
|
+
name: 'name',
|
|
11723
|
+
type: 'char',
|
|
11724
|
+
arrayLength: 32,
|
|
11725
|
+
},
|
|
11726
|
+
{
|
|
11727
|
+
name: 'uri',
|
|
11728
|
+
type: 'char',
|
|
11729
|
+
arrayLength: 160,
|
|
11730
|
+
},
|
|
11623
11731
|
{
|
|
11624
11732
|
name: 'encoding',
|
|
11625
11733
|
type: 'uint8_t',
|
|
@@ -11679,11 +11787,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
11679
11787
|
id: 271,
|
|
11680
11788
|
name: 'CAMERA_FOV_STATUS',
|
|
11681
11789
|
fields: [
|
|
11682
|
-
{
|
|
11683
|
-
name: 'q',
|
|
11684
|
-
type: 'float',
|
|
11685
|
-
arrayLength: 4,
|
|
11686
|
-
},
|
|
11687
11790
|
{
|
|
11688
11791
|
name: 'time_boot_ms',
|
|
11689
11792
|
type: 'uint32_t',
|
|
@@ -11712,6 +11815,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
11712
11815
|
name: 'alt_image',
|
|
11713
11816
|
type: 'int32_t',
|
|
11714
11817
|
},
|
|
11818
|
+
{
|
|
11819
|
+
name: 'q',
|
|
11820
|
+
type: 'float',
|
|
11821
|
+
arrayLength: 4,
|
|
11822
|
+
},
|
|
11715
11823
|
{
|
|
11716
11824
|
name: 'hfov',
|
|
11717
11825
|
type: 'float',
|
|
@@ -11963,15 +12071,15 @@ const MESSAGE_DEFINITIONS = [
|
|
|
11963
12071
|
id: 282,
|
|
11964
12072
|
name: 'GIMBAL_MANAGER_SET_ATTITUDE',
|
|
11965
12073
|
fields: [
|
|
12074
|
+
{
|
|
12075
|
+
name: 'flags',
|
|
12076
|
+
type: 'uint32_t',
|
|
12077
|
+
},
|
|
11966
12078
|
{
|
|
11967
12079
|
name: 'q',
|
|
11968
12080
|
type: 'float',
|
|
11969
12081
|
arrayLength: 4,
|
|
11970
12082
|
},
|
|
11971
|
-
{
|
|
11972
|
-
name: 'flags',
|
|
11973
|
-
type: 'uint32_t',
|
|
11974
|
-
},
|
|
11975
12083
|
{
|
|
11976
12084
|
name: 'angular_velocity_x',
|
|
11977
12085
|
type: 'float',
|
|
@@ -12002,21 +12110,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
12002
12110
|
id: 283,
|
|
12003
12111
|
name: 'GIMBAL_DEVICE_INFORMATION',
|
|
12004
12112
|
fields: [
|
|
12005
|
-
{
|
|
12006
|
-
name: 'vendor_name',
|
|
12007
|
-
type: 'char',
|
|
12008
|
-
arrayLength: 32,
|
|
12009
|
-
},
|
|
12010
|
-
{
|
|
12011
|
-
name: 'model_name',
|
|
12012
|
-
type: 'char',
|
|
12013
|
-
arrayLength: 32,
|
|
12014
|
-
},
|
|
12015
|
-
{
|
|
12016
|
-
name: 'custom_name',
|
|
12017
|
-
type: 'char',
|
|
12018
|
-
arrayLength: 32,
|
|
12019
|
-
},
|
|
12020
12113
|
{
|
|
12021
12114
|
name: 'uid',
|
|
12022
12115
|
type: 'uint64_t',
|
|
@@ -12065,6 +12158,21 @@ const MESSAGE_DEFINITIONS = [
|
|
|
12065
12158
|
name: 'custom_cap_flags',
|
|
12066
12159
|
type: 'uint16_t',
|
|
12067
12160
|
},
|
|
12161
|
+
{
|
|
12162
|
+
name: 'vendor_name',
|
|
12163
|
+
type: 'char',
|
|
12164
|
+
arrayLength: 32,
|
|
12165
|
+
},
|
|
12166
|
+
{
|
|
12167
|
+
name: 'model_name',
|
|
12168
|
+
type: 'char',
|
|
12169
|
+
arrayLength: 32,
|
|
12170
|
+
},
|
|
12171
|
+
{
|
|
12172
|
+
name: 'custom_name',
|
|
12173
|
+
type: 'char',
|
|
12174
|
+
arrayLength: 32,
|
|
12175
|
+
},
|
|
12068
12176
|
{
|
|
12069
12177
|
name: 'gimbal_device_id',
|
|
12070
12178
|
type: 'uint8_t',
|
|
@@ -12111,15 +12219,15 @@ const MESSAGE_DEFINITIONS = [
|
|
|
12111
12219
|
id: 285,
|
|
12112
12220
|
name: 'GIMBAL_DEVICE_ATTITUDE_STATUS',
|
|
12113
12221
|
fields: [
|
|
12222
|
+
{
|
|
12223
|
+
name: 'time_boot_ms',
|
|
12224
|
+
type: 'uint32_t',
|
|
12225
|
+
},
|
|
12114
12226
|
{
|
|
12115
12227
|
name: 'q',
|
|
12116
12228
|
type: 'float',
|
|
12117
12229
|
arrayLength: 4,
|
|
12118
12230
|
},
|
|
12119
|
-
{
|
|
12120
|
-
name: 'time_boot_ms',
|
|
12121
|
-
type: 'uint32_t',
|
|
12122
|
-
},
|
|
12123
12231
|
{
|
|
12124
12232
|
name: 'angular_velocity_x',
|
|
12125
12233
|
type: 'float',
|
|
@@ -12169,15 +12277,15 @@ const MESSAGE_DEFINITIONS = [
|
|
|
12169
12277
|
id: 286,
|
|
12170
12278
|
name: 'AUTOPILOT_STATE_FOR_GIMBAL_DEVICE',
|
|
12171
12279
|
fields: [
|
|
12280
|
+
{
|
|
12281
|
+
name: 'time_boot_us',
|
|
12282
|
+
type: 'uint64_t',
|
|
12283
|
+
},
|
|
12172
12284
|
{
|
|
12173
12285
|
name: 'q',
|
|
12174
12286
|
type: 'float',
|
|
12175
12287
|
arrayLength: 4,
|
|
12176
12288
|
},
|
|
12177
|
-
{
|
|
12178
|
-
name: 'time_boot_us',
|
|
12179
|
-
type: 'uint64_t',
|
|
12180
|
-
},
|
|
12181
12289
|
{
|
|
12182
12290
|
name: 'q_estimated_delay_us',
|
|
12183
12291
|
type: 'uint32_t',
|
|
@@ -12305,14 +12413,18 @@ const MESSAGE_DEFINITIONS = [
|
|
|
12305
12413
|
id: 290,
|
|
12306
12414
|
name: 'ESC_INFO',
|
|
12307
12415
|
fields: [
|
|
12416
|
+
{
|
|
12417
|
+
name: 'time_usec',
|
|
12418
|
+
type: 'uint64_t',
|
|
12419
|
+
},
|
|
12308
12420
|
{
|
|
12309
12421
|
name: 'error_count',
|
|
12310
12422
|
type: 'uint32_t',
|
|
12311
12423
|
arrayLength: 4,
|
|
12312
12424
|
},
|
|
12313
12425
|
{
|
|
12314
|
-
name: '
|
|
12315
|
-
type: '
|
|
12426
|
+
name: 'counter',
|
|
12427
|
+
type: 'uint16_t',
|
|
12316
12428
|
},
|
|
12317
12429
|
{
|
|
12318
12430
|
name: 'failure_flags',
|
|
@@ -12324,10 +12436,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
12324
12436
|
type: 'int16_t',
|
|
12325
12437
|
arrayLength: 4,
|
|
12326
12438
|
},
|
|
12327
|
-
{
|
|
12328
|
-
name: 'counter',
|
|
12329
|
-
type: 'uint16_t',
|
|
12330
|
-
},
|
|
12331
12439
|
{
|
|
12332
12440
|
name: 'index',
|
|
12333
12441
|
type: 'uint8_t',
|
|
@@ -12350,6 +12458,10 @@ const MESSAGE_DEFINITIONS = [
|
|
|
12350
12458
|
id: 291,
|
|
12351
12459
|
name: 'ESC_STATUS',
|
|
12352
12460
|
fields: [
|
|
12461
|
+
{
|
|
12462
|
+
name: 'time_usec',
|
|
12463
|
+
type: 'uint64_t',
|
|
12464
|
+
},
|
|
12353
12465
|
{
|
|
12354
12466
|
name: 'rpm',
|
|
12355
12467
|
type: 'int32_t',
|
|
@@ -12366,11 +12478,33 @@ const MESSAGE_DEFINITIONS = [
|
|
|
12366
12478
|
arrayLength: 4,
|
|
12367
12479
|
},
|
|
12368
12480
|
{
|
|
12369
|
-
name: '
|
|
12370
|
-
type: '
|
|
12481
|
+
name: 'index',
|
|
12482
|
+
type: 'uint8_t',
|
|
12483
|
+
},
|
|
12484
|
+
]
|
|
12485
|
+
},
|
|
12486
|
+
{
|
|
12487
|
+
id: 295,
|
|
12488
|
+
name: 'AIRSPEED',
|
|
12489
|
+
fields: [
|
|
12490
|
+
{
|
|
12491
|
+
name: 'airspeed',
|
|
12492
|
+
type: 'float',
|
|
12371
12493
|
},
|
|
12372
12494
|
{
|
|
12373
|
-
name: '
|
|
12495
|
+
name: 'raw_press',
|
|
12496
|
+
type: 'float',
|
|
12497
|
+
},
|
|
12498
|
+
{
|
|
12499
|
+
name: 'temperature',
|
|
12500
|
+
type: 'int16_t',
|
|
12501
|
+
},
|
|
12502
|
+
{
|
|
12503
|
+
name: 'id',
|
|
12504
|
+
type: 'uint8_t',
|
|
12505
|
+
},
|
|
12506
|
+
{
|
|
12507
|
+
name: 'flags',
|
|
12374
12508
|
type: 'uint8_t',
|
|
12375
12509
|
},
|
|
12376
12510
|
]
|
|
@@ -12380,14 +12514,14 @@ const MESSAGE_DEFINITIONS = [
|
|
|
12380
12514
|
name: 'WIFI_CONFIG_AP',
|
|
12381
12515
|
fields: [
|
|
12382
12516
|
{
|
|
12383
|
-
name: '
|
|
12517
|
+
name: 'ssid',
|
|
12384
12518
|
type: 'char',
|
|
12385
|
-
arrayLength:
|
|
12519
|
+
arrayLength: 32,
|
|
12386
12520
|
},
|
|
12387
12521
|
{
|
|
12388
|
-
name: '
|
|
12522
|
+
name: 'password',
|
|
12389
12523
|
type: 'char',
|
|
12390
|
-
arrayLength:
|
|
12524
|
+
arrayLength: 64,
|
|
12391
12525
|
},
|
|
12392
12526
|
{
|
|
12393
12527
|
name: 'mode',
|
|
@@ -12402,19 +12536,37 @@ const MESSAGE_DEFINITIONS = [
|
|
|
12402
12536
|
]
|
|
12403
12537
|
},
|
|
12404
12538
|
{
|
|
12405
|
-
id:
|
|
12406
|
-
name: '
|
|
12539
|
+
id: 300,
|
|
12540
|
+
name: 'PROTOCOL_VERSION',
|
|
12407
12541
|
fields: [
|
|
12408
12542
|
{
|
|
12409
|
-
name: '
|
|
12410
|
-
type: '
|
|
12411
|
-
arrayLength: 20,
|
|
12543
|
+
name: 'version',
|
|
12544
|
+
type: 'uint16_t',
|
|
12412
12545
|
},
|
|
12413
12546
|
{
|
|
12414
|
-
name: '
|
|
12415
|
-
type: '
|
|
12416
|
-
|
|
12547
|
+
name: 'min_version',
|
|
12548
|
+
type: 'uint16_t',
|
|
12549
|
+
},
|
|
12550
|
+
{
|
|
12551
|
+
name: 'max_version',
|
|
12552
|
+
type: 'uint16_t',
|
|
12553
|
+
},
|
|
12554
|
+
{
|
|
12555
|
+
name: 'spec_version_hash',
|
|
12556
|
+
type: 'uint8_t',
|
|
12557
|
+
arrayLength: 8,
|
|
12417
12558
|
},
|
|
12559
|
+
{
|
|
12560
|
+
name: 'library_version_hash',
|
|
12561
|
+
type: 'uint8_t',
|
|
12562
|
+
arrayLength: 8,
|
|
12563
|
+
},
|
|
12564
|
+
]
|
|
12565
|
+
},
|
|
12566
|
+
{
|
|
12567
|
+
id: 301,
|
|
12568
|
+
name: 'AIS_VESSEL',
|
|
12569
|
+
fields: [
|
|
12418
12570
|
{
|
|
12419
12571
|
name: 'mmsi',
|
|
12420
12572
|
type: 'uint32_t',
|
|
@@ -12475,6 +12627,16 @@ const MESSAGE_DEFINITIONS = [
|
|
|
12475
12627
|
name: 'dimension_starboard',
|
|
12476
12628
|
type: 'uint8_t',
|
|
12477
12629
|
},
|
|
12630
|
+
{
|
|
12631
|
+
name: 'callsign',
|
|
12632
|
+
type: 'char',
|
|
12633
|
+
arrayLength: 7,
|
|
12634
|
+
},
|
|
12635
|
+
{
|
|
12636
|
+
name: 'name',
|
|
12637
|
+
type: 'char',
|
|
12638
|
+
arrayLength: 20,
|
|
12639
|
+
},
|
|
12478
12640
|
]
|
|
12479
12641
|
},
|
|
12480
12642
|
{
|
|
@@ -12511,16 +12673,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
12511
12673
|
id: 311,
|
|
12512
12674
|
name: 'UAVCAN_NODE_INFO',
|
|
12513
12675
|
fields: [
|
|
12514
|
-
{
|
|
12515
|
-
name: 'name',
|
|
12516
|
-
type: 'char',
|
|
12517
|
-
arrayLength: 80,
|
|
12518
|
-
},
|
|
12519
|
-
{
|
|
12520
|
-
name: 'hw_unique_id',
|
|
12521
|
-
type: 'uint8_t',
|
|
12522
|
-
arrayLength: 16,
|
|
12523
|
-
},
|
|
12524
12676
|
{
|
|
12525
12677
|
name: 'time_usec',
|
|
12526
12678
|
type: 'uint64_t',
|
|
@@ -12534,13 +12686,23 @@ const MESSAGE_DEFINITIONS = [
|
|
|
12534
12686
|
type: 'uint32_t',
|
|
12535
12687
|
},
|
|
12536
12688
|
{
|
|
12537
|
-
name: '
|
|
12689
|
+
name: 'name',
|
|
12690
|
+
type: 'char',
|
|
12691
|
+
arrayLength: 80,
|
|
12692
|
+
},
|
|
12693
|
+
{
|
|
12694
|
+
name: 'hw_version_major',
|
|
12538
12695
|
type: 'uint8_t',
|
|
12539
12696
|
},
|
|
12540
12697
|
{
|
|
12541
12698
|
name: 'hw_version_minor',
|
|
12542
12699
|
type: 'uint8_t',
|
|
12543
12700
|
},
|
|
12701
|
+
{
|
|
12702
|
+
name: 'hw_unique_id',
|
|
12703
|
+
type: 'uint8_t',
|
|
12704
|
+
arrayLength: 16,
|
|
12705
|
+
},
|
|
12544
12706
|
{
|
|
12545
12707
|
name: 'sw_version_major',
|
|
12546
12708
|
type: 'uint8_t',
|
|
@@ -12555,11 +12717,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
12555
12717
|
id: 320,
|
|
12556
12718
|
name: 'PARAM_EXT_REQUEST_READ',
|
|
12557
12719
|
fields: [
|
|
12558
|
-
{
|
|
12559
|
-
name: 'param_id',
|
|
12560
|
-
type: 'char',
|
|
12561
|
-
arrayLength: 16,
|
|
12562
|
-
},
|
|
12563
12720
|
{
|
|
12564
12721
|
name: 'param_index',
|
|
12565
12722
|
type: 'int16_t',
|
|
@@ -12572,6 +12729,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
12572
12729
|
name: 'target_component',
|
|
12573
12730
|
type: 'uint8_t',
|
|
12574
12731
|
},
|
|
12732
|
+
{
|
|
12733
|
+
name: 'param_id',
|
|
12734
|
+
type: 'char',
|
|
12735
|
+
arrayLength: 16,
|
|
12736
|
+
},
|
|
12575
12737
|
]
|
|
12576
12738
|
},
|
|
12577
12739
|
{
|
|
@@ -12593,9 +12755,12 @@ const MESSAGE_DEFINITIONS = [
|
|
|
12593
12755
|
name: 'PARAM_EXT_VALUE',
|
|
12594
12756
|
fields: [
|
|
12595
12757
|
{
|
|
12596
|
-
name: '
|
|
12597
|
-
type: '
|
|
12598
|
-
|
|
12758
|
+
name: 'param_count',
|
|
12759
|
+
type: 'uint16_t',
|
|
12760
|
+
},
|
|
12761
|
+
{
|
|
12762
|
+
name: 'param_index',
|
|
12763
|
+
type: 'uint16_t',
|
|
12599
12764
|
},
|
|
12600
12765
|
{
|
|
12601
12766
|
name: 'param_id',
|
|
@@ -12603,12 +12768,9 @@ const MESSAGE_DEFINITIONS = [
|
|
|
12603
12768
|
arrayLength: 16,
|
|
12604
12769
|
},
|
|
12605
12770
|
{
|
|
12606
|
-
name: '
|
|
12607
|
-
type: '
|
|
12608
|
-
|
|
12609
|
-
{
|
|
12610
|
-
name: 'param_index',
|
|
12611
|
-
type: 'uint16_t',
|
|
12771
|
+
name: 'param_value',
|
|
12772
|
+
type: 'char',
|
|
12773
|
+
arrayLength: 128,
|
|
12612
12774
|
},
|
|
12613
12775
|
{
|
|
12614
12776
|
name: 'param_type',
|
|
@@ -12621,9 +12783,12 @@ const MESSAGE_DEFINITIONS = [
|
|
|
12621
12783
|
name: 'PARAM_EXT_SET',
|
|
12622
12784
|
fields: [
|
|
12623
12785
|
{
|
|
12624
|
-
name: '
|
|
12625
|
-
type: '
|
|
12626
|
-
|
|
12786
|
+
name: 'target_system',
|
|
12787
|
+
type: 'uint8_t',
|
|
12788
|
+
},
|
|
12789
|
+
{
|
|
12790
|
+
name: 'target_component',
|
|
12791
|
+
type: 'uint8_t',
|
|
12627
12792
|
},
|
|
12628
12793
|
{
|
|
12629
12794
|
name: 'param_id',
|
|
@@ -12631,12 +12796,9 @@ const MESSAGE_DEFINITIONS = [
|
|
|
12631
12796
|
arrayLength: 16,
|
|
12632
12797
|
},
|
|
12633
12798
|
{
|
|
12634
|
-
name: '
|
|
12635
|
-
type: '
|
|
12636
|
-
|
|
12637
|
-
{
|
|
12638
|
-
name: 'target_component',
|
|
12639
|
-
type: 'uint8_t',
|
|
12799
|
+
name: 'param_value',
|
|
12800
|
+
type: 'char',
|
|
12801
|
+
arrayLength: 128,
|
|
12640
12802
|
},
|
|
12641
12803
|
{
|
|
12642
12804
|
name: 'param_type',
|
|
@@ -12649,14 +12811,14 @@ const MESSAGE_DEFINITIONS = [
|
|
|
12649
12811
|
name: 'PARAM_EXT_ACK',
|
|
12650
12812
|
fields: [
|
|
12651
12813
|
{
|
|
12652
|
-
name: '
|
|
12814
|
+
name: 'param_id',
|
|
12653
12815
|
type: 'char',
|
|
12654
|
-
arrayLength:
|
|
12816
|
+
arrayLength: 16,
|
|
12655
12817
|
},
|
|
12656
12818
|
{
|
|
12657
|
-
name: '
|
|
12819
|
+
name: 'param_value',
|
|
12658
12820
|
type: 'char',
|
|
12659
|
-
arrayLength:
|
|
12821
|
+
arrayLength: 128,
|
|
12660
12822
|
},
|
|
12661
12823
|
{
|
|
12662
12824
|
name: 'param_type',
|
|
@@ -12672,15 +12834,15 @@ const MESSAGE_DEFINITIONS = [
|
|
|
12672
12834
|
id: 330,
|
|
12673
12835
|
name: 'OBSTACLE_DISTANCE',
|
|
12674
12836
|
fields: [
|
|
12837
|
+
{
|
|
12838
|
+
name: 'time_usec',
|
|
12839
|
+
type: 'uint64_t',
|
|
12840
|
+
},
|
|
12675
12841
|
{
|
|
12676
12842
|
name: 'distances',
|
|
12677
12843
|
type: 'uint16_t',
|
|
12678
12844
|
arrayLength: 72,
|
|
12679
12845
|
},
|
|
12680
|
-
{
|
|
12681
|
-
name: 'time_usec',
|
|
12682
|
-
type: 'uint64_t',
|
|
12683
|
-
},
|
|
12684
12846
|
{
|
|
12685
12847
|
name: 'min_distance',
|
|
12686
12848
|
type: 'uint16_t',
|
|
@@ -12718,21 +12880,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
12718
12880
|
id: 331,
|
|
12719
12881
|
name: 'ODOMETRY',
|
|
12720
12882
|
fields: [
|
|
12721
|
-
{
|
|
12722
|
-
name: 'pose_covariance',
|
|
12723
|
-
type: 'float',
|
|
12724
|
-
arrayLength: 21,
|
|
12725
|
-
},
|
|
12726
|
-
{
|
|
12727
|
-
name: 'velocity_covariance',
|
|
12728
|
-
type: 'float',
|
|
12729
|
-
arrayLength: 21,
|
|
12730
|
-
},
|
|
12731
|
-
{
|
|
12732
|
-
name: 'q',
|
|
12733
|
-
type: 'float',
|
|
12734
|
-
arrayLength: 4,
|
|
12735
|
-
},
|
|
12736
12883
|
{
|
|
12737
12884
|
name: 'time_usec',
|
|
12738
12885
|
type: 'uint64_t',
|
|
@@ -12749,6 +12896,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
12749
12896
|
name: 'z',
|
|
12750
12897
|
type: 'float',
|
|
12751
12898
|
},
|
|
12899
|
+
{
|
|
12900
|
+
name: 'q',
|
|
12901
|
+
type: 'float',
|
|
12902
|
+
arrayLength: 4,
|
|
12903
|
+
},
|
|
12752
12904
|
{
|
|
12753
12905
|
name: 'vx',
|
|
12754
12906
|
type: 'float',
|
|
@@ -12773,6 +12925,16 @@ const MESSAGE_DEFINITIONS = [
|
|
|
12773
12925
|
name: 'yawspeed',
|
|
12774
12926
|
type: 'float',
|
|
12775
12927
|
},
|
|
12928
|
+
{
|
|
12929
|
+
name: 'pose_covariance',
|
|
12930
|
+
type: 'float',
|
|
12931
|
+
arrayLength: 21,
|
|
12932
|
+
},
|
|
12933
|
+
{
|
|
12934
|
+
name: 'velocity_covariance',
|
|
12935
|
+
type: 'float',
|
|
12936
|
+
arrayLength: 21,
|
|
12937
|
+
},
|
|
12776
12938
|
{
|
|
12777
12939
|
name: 'frame_id',
|
|
12778
12940
|
type: 'uint8_t',
|
|
@@ -12802,6 +12964,10 @@ const MESSAGE_DEFINITIONS = [
|
|
|
12802
12964
|
id: 332,
|
|
12803
12965
|
name: 'TRAJECTORY_REPRESENTATION_WAYPOINTS',
|
|
12804
12966
|
fields: [
|
|
12967
|
+
{
|
|
12968
|
+
name: 'time_usec',
|
|
12969
|
+
type: 'uint64_t',
|
|
12970
|
+
},
|
|
12805
12971
|
{
|
|
12806
12972
|
name: 'pos_x',
|
|
12807
12973
|
type: 'float',
|
|
@@ -12862,10 +13028,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
12862
13028
|
type: 'uint16_t',
|
|
12863
13029
|
arrayLength: 5,
|
|
12864
13030
|
},
|
|
12865
|
-
{
|
|
12866
|
-
name: 'time_usec',
|
|
12867
|
-
type: 'uint64_t',
|
|
12868
|
-
},
|
|
12869
13031
|
{
|
|
12870
13032
|
name: 'valid_points',
|
|
12871
13033
|
type: 'uint8_t',
|
|
@@ -12876,6 +13038,10 @@ const MESSAGE_DEFINITIONS = [
|
|
|
12876
13038
|
id: 333,
|
|
12877
13039
|
name: 'TRAJECTORY_REPRESENTATION_BEZIER',
|
|
12878
13040
|
fields: [
|
|
13041
|
+
{
|
|
13042
|
+
name: 'time_usec',
|
|
13043
|
+
type: 'uint64_t',
|
|
13044
|
+
},
|
|
12879
13045
|
{
|
|
12880
13046
|
name: 'pos_x',
|
|
12881
13047
|
type: 'float',
|
|
@@ -12901,10 +13067,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
12901
13067
|
type: 'float',
|
|
12902
13068
|
arrayLength: 5,
|
|
12903
13069
|
},
|
|
12904
|
-
{
|
|
12905
|
-
name: 'time_usec',
|
|
12906
|
-
type: 'uint64_t',
|
|
12907
|
-
},
|
|
12908
13070
|
{
|
|
12909
13071
|
name: 'valid_points',
|
|
12910
13072
|
type: 'uint8_t',
|
|
@@ -12988,9 +13150,12 @@ const MESSAGE_DEFINITIONS = [
|
|
|
12988
13150
|
name: 'CELLULAR_CONFIG',
|
|
12989
13151
|
fields: [
|
|
12990
13152
|
{
|
|
12991
|
-
name: '
|
|
12992
|
-
type: '
|
|
12993
|
-
|
|
13153
|
+
name: 'enable_lte',
|
|
13154
|
+
type: 'uint8_t',
|
|
13155
|
+
},
|
|
13156
|
+
{
|
|
13157
|
+
name: 'enable_pin',
|
|
13158
|
+
type: 'uint8_t',
|
|
12994
13159
|
},
|
|
12995
13160
|
{
|
|
12996
13161
|
name: 'pin',
|
|
@@ -13003,17 +13168,14 @@ const MESSAGE_DEFINITIONS = [
|
|
|
13003
13168
|
arrayLength: 16,
|
|
13004
13169
|
},
|
|
13005
13170
|
{
|
|
13006
|
-
name: '
|
|
13171
|
+
name: 'apn',
|
|
13007
13172
|
type: 'char',
|
|
13008
|
-
arrayLength:
|
|
13009
|
-
},
|
|
13010
|
-
{
|
|
13011
|
-
name: 'enable_lte',
|
|
13012
|
-
type: 'uint8_t',
|
|
13173
|
+
arrayLength: 32,
|
|
13013
13174
|
},
|
|
13014
13175
|
{
|
|
13015
|
-
name: '
|
|
13016
|
-
type: '
|
|
13176
|
+
name: 'puk',
|
|
13177
|
+
type: 'char',
|
|
13178
|
+
arrayLength: 16,
|
|
13017
13179
|
},
|
|
13018
13180
|
{
|
|
13019
13181
|
name: 'roaming',
|
|
@@ -13043,11 +13205,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
13043
13205
|
id: 340,
|
|
13044
13206
|
name: 'UTM_GLOBAL_POSITION',
|
|
13045
13207
|
fields: [
|
|
13046
|
-
{
|
|
13047
|
-
name: 'uas_id',
|
|
13048
|
-
type: 'uint8_t',
|
|
13049
|
-
arrayLength: 18,
|
|
13050
|
-
},
|
|
13051
13208
|
{
|
|
13052
13209
|
name: 'time',
|
|
13053
13210
|
type: 'uint64_t',
|
|
@@ -13108,6 +13265,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
13108
13265
|
name: 'update_rate',
|
|
13109
13266
|
type: 'uint16_t',
|
|
13110
13267
|
},
|
|
13268
|
+
{
|
|
13269
|
+
name: 'uas_id',
|
|
13270
|
+
type: 'uint8_t',
|
|
13271
|
+
arrayLength: 18,
|
|
13272
|
+
},
|
|
13111
13273
|
{
|
|
13112
13274
|
name: 'flight_state',
|
|
13113
13275
|
type: 'uint8_t',
|
|
@@ -13119,14 +13281,36 @@ const MESSAGE_DEFINITIONS = [
|
|
|
13119
13281
|
]
|
|
13120
13282
|
},
|
|
13121
13283
|
{
|
|
13122
|
-
id:
|
|
13123
|
-
name: '
|
|
13284
|
+
id: 345,
|
|
13285
|
+
name: 'PARAM_ERROR',
|
|
13124
13286
|
fields: [
|
|
13125
13287
|
{
|
|
13126
|
-
name: '
|
|
13288
|
+
name: 'param_index',
|
|
13289
|
+
type: 'int16_t',
|
|
13290
|
+
},
|
|
13291
|
+
{
|
|
13292
|
+
name: 'target_system',
|
|
13293
|
+
type: 'uint8_t',
|
|
13294
|
+
},
|
|
13295
|
+
{
|
|
13296
|
+
name: 'target_component',
|
|
13297
|
+
type: 'uint8_t',
|
|
13298
|
+
},
|
|
13299
|
+
{
|
|
13300
|
+
name: 'param_id',
|
|
13127
13301
|
type: 'char',
|
|
13128
|
-
arrayLength:
|
|
13302
|
+
arrayLength: 16,
|
|
13303
|
+
},
|
|
13304
|
+
{
|
|
13305
|
+
name: 'error',
|
|
13306
|
+
type: 'uint8_t',
|
|
13129
13307
|
},
|
|
13308
|
+
]
|
|
13309
|
+
},
|
|
13310
|
+
{
|
|
13311
|
+
id: 350,
|
|
13312
|
+
name: 'DEBUG_FLOAT_ARRAY',
|
|
13313
|
+
fields: [
|
|
13130
13314
|
{
|
|
13131
13315
|
name: 'time_usec',
|
|
13132
13316
|
type: 'uint64_t',
|
|
@@ -13135,6 +13319,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
13135
13319
|
name: 'array_id',
|
|
13136
13320
|
type: 'uint16_t',
|
|
13137
13321
|
},
|
|
13322
|
+
{
|
|
13323
|
+
name: 'name',
|
|
13324
|
+
type: 'char',
|
|
13325
|
+
arrayLength: 10,
|
|
13326
|
+
},
|
|
13138
13327
|
{
|
|
13139
13328
|
name: 'data',
|
|
13140
13329
|
type: 'float',
|
|
@@ -13177,16 +13366,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
13177
13366
|
id: 370,
|
|
13178
13367
|
name: 'SMART_BATTERY_INFO',
|
|
13179
13368
|
fields: [
|
|
13180
|
-
{
|
|
13181
|
-
name: 'device_name',
|
|
13182
|
-
type: 'char',
|
|
13183
|
-
arrayLength: 50,
|
|
13184
|
-
},
|
|
13185
|
-
{
|
|
13186
|
-
name: 'serial_number',
|
|
13187
|
-
type: 'char',
|
|
13188
|
-
arrayLength: 16,
|
|
13189
|
-
},
|
|
13190
13369
|
{
|
|
13191
13370
|
name: 'capacity_full_specification',
|
|
13192
13371
|
type: 'int32_t',
|
|
@@ -13227,6 +13406,16 @@ const MESSAGE_DEFINITIONS = [
|
|
|
13227
13406
|
name: 'type',
|
|
13228
13407
|
type: 'uint8_t',
|
|
13229
13408
|
},
|
|
13409
|
+
{
|
|
13410
|
+
name: 'serial_number',
|
|
13411
|
+
type: 'char',
|
|
13412
|
+
arrayLength: 16,
|
|
13413
|
+
},
|
|
13414
|
+
{
|
|
13415
|
+
name: 'device_name',
|
|
13416
|
+
type: 'char',
|
|
13417
|
+
arrayLength: 50,
|
|
13418
|
+
},
|
|
13230
13419
|
{
|
|
13231
13420
|
name: 'charging_maximum_voltage',
|
|
13232
13421
|
type: 'uint16_t',
|
|
@@ -13255,6 +13444,44 @@ const MESSAGE_DEFINITIONS = [
|
|
|
13255
13444
|
},
|
|
13256
13445
|
]
|
|
13257
13446
|
},
|
|
13447
|
+
{
|
|
13448
|
+
id: 361,
|
|
13449
|
+
name: 'FIGURE_EIGHT_EXECUTION_STATUS',
|
|
13450
|
+
fields: [
|
|
13451
|
+
{
|
|
13452
|
+
name: 'time_usec',
|
|
13453
|
+
type: 'uint64_t',
|
|
13454
|
+
},
|
|
13455
|
+
{
|
|
13456
|
+
name: 'major_radius',
|
|
13457
|
+
type: 'float',
|
|
13458
|
+
},
|
|
13459
|
+
{
|
|
13460
|
+
name: 'minor_radius',
|
|
13461
|
+
type: 'float',
|
|
13462
|
+
},
|
|
13463
|
+
{
|
|
13464
|
+
name: 'orientation',
|
|
13465
|
+
type: 'float',
|
|
13466
|
+
},
|
|
13467
|
+
{
|
|
13468
|
+
name: 'x',
|
|
13469
|
+
type: 'int32_t',
|
|
13470
|
+
},
|
|
13471
|
+
{
|
|
13472
|
+
name: 'y',
|
|
13473
|
+
type: 'int32_t',
|
|
13474
|
+
},
|
|
13475
|
+
{
|
|
13476
|
+
name: 'z',
|
|
13477
|
+
type: 'float',
|
|
13478
|
+
},
|
|
13479
|
+
{
|
|
13480
|
+
name: 'frame',
|
|
13481
|
+
type: 'uint8_t',
|
|
13482
|
+
},
|
|
13483
|
+
]
|
|
13484
|
+
},
|
|
13258
13485
|
{
|
|
13259
13486
|
id: 371,
|
|
13260
13487
|
name: 'FUEL_STATUS',
|
|
@@ -13297,21 +13524,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
13297
13524
|
id: 372,
|
|
13298
13525
|
name: 'BATTERY_INFO',
|
|
13299
13526
|
fields: [
|
|
13300
|
-
{
|
|
13301
|
-
name: 'name',
|
|
13302
|
-
type: 'char',
|
|
13303
|
-
arrayLength: 50,
|
|
13304
|
-
},
|
|
13305
|
-
{
|
|
13306
|
-
name: 'serial_number',
|
|
13307
|
-
type: 'char',
|
|
13308
|
-
arrayLength: 32,
|
|
13309
|
-
},
|
|
13310
|
-
{
|
|
13311
|
-
name: 'manufacture_date',
|
|
13312
|
-
type: 'char',
|
|
13313
|
-
arrayLength: 9,
|
|
13314
|
-
},
|
|
13315
13527
|
{
|
|
13316
13528
|
name: 'discharge_minimum_voltage',
|
|
13317
13529
|
type: 'float',
|
|
@@ -13380,9 +13592,24 @@ const MESSAGE_DEFINITIONS = [
|
|
|
13380
13592
|
name: 'cells_in_series',
|
|
13381
13593
|
type: 'uint8_t',
|
|
13382
13594
|
},
|
|
13383
|
-
|
|
13384
|
-
|
|
13385
|
-
|
|
13595
|
+
{
|
|
13596
|
+
name: 'manufacture_date',
|
|
13597
|
+
type: 'char',
|
|
13598
|
+
arrayLength: 9,
|
|
13599
|
+
},
|
|
13600
|
+
{
|
|
13601
|
+
name: 'serial_number',
|
|
13602
|
+
type: 'char',
|
|
13603
|
+
arrayLength: 32,
|
|
13604
|
+
},
|
|
13605
|
+
{
|
|
13606
|
+
name: 'name',
|
|
13607
|
+
type: 'char',
|
|
13608
|
+
arrayLength: 50,
|
|
13609
|
+
},
|
|
13610
|
+
]
|
|
13611
|
+
},
|
|
13612
|
+
{
|
|
13386
13613
|
id: 373,
|
|
13387
13614
|
name: 'GENERATOR_STATUS',
|
|
13388
13615
|
fields: [
|
|
@@ -13436,11 +13663,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
13436
13663
|
id: 375,
|
|
13437
13664
|
name: 'ACTUATOR_OUTPUT_STATUS',
|
|
13438
13665
|
fields: [
|
|
13439
|
-
{
|
|
13440
|
-
name: 'actuator',
|
|
13441
|
-
type: 'float',
|
|
13442
|
-
arrayLength: 32,
|
|
13443
|
-
},
|
|
13444
13666
|
{
|
|
13445
13667
|
name: 'time_usec',
|
|
13446
13668
|
type: 'uint64_t',
|
|
@@ -13449,6 +13671,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
13449
13671
|
name: 'active',
|
|
13450
13672
|
type: 'uint32_t',
|
|
13451
13673
|
},
|
|
13674
|
+
{
|
|
13675
|
+
name: 'actuator',
|
|
13676
|
+
type: 'float',
|
|
13677
|
+
arrayLength: 32,
|
|
13678
|
+
},
|
|
13452
13679
|
]
|
|
13453
13680
|
},
|
|
13454
13681
|
{
|
|
@@ -13481,11 +13708,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
13481
13708
|
id: 385,
|
|
13482
13709
|
name: 'TUNNEL',
|
|
13483
13710
|
fields: [
|
|
13484
|
-
{
|
|
13485
|
-
name: 'payload',
|
|
13486
|
-
type: 'uint8_t',
|
|
13487
|
-
arrayLength: 128,
|
|
13488
|
-
},
|
|
13489
13711
|
{
|
|
13490
13712
|
name: 'payload_type',
|
|
13491
13713
|
type: 'uint16_t',
|
|
@@ -13502,17 +13724,17 @@ const MESSAGE_DEFINITIONS = [
|
|
|
13502
13724
|
name: 'payload_length',
|
|
13503
13725
|
type: 'uint8_t',
|
|
13504
13726
|
},
|
|
13727
|
+
{
|
|
13728
|
+
name: 'payload',
|
|
13729
|
+
type: 'uint8_t',
|
|
13730
|
+
arrayLength: 128,
|
|
13731
|
+
},
|
|
13505
13732
|
]
|
|
13506
13733
|
},
|
|
13507
13734
|
{
|
|
13508
13735
|
id: 386,
|
|
13509
13736
|
name: 'CAN_FRAME',
|
|
13510
13737
|
fields: [
|
|
13511
|
-
{
|
|
13512
|
-
name: 'data',
|
|
13513
|
-
type: 'uint8_t',
|
|
13514
|
-
arrayLength: 8,
|
|
13515
|
-
},
|
|
13516
13738
|
{
|
|
13517
13739
|
name: 'id',
|
|
13518
13740
|
type: 'uint32_t',
|
|
@@ -13533,6 +13755,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
13533
13755
|
name: 'len',
|
|
13534
13756
|
type: 'uint8_t',
|
|
13535
13757
|
},
|
|
13758
|
+
{
|
|
13759
|
+
name: 'data',
|
|
13760
|
+
type: 'uint8_t',
|
|
13761
|
+
arrayLength: 8,
|
|
13762
|
+
},
|
|
13536
13763
|
]
|
|
13537
13764
|
},
|
|
13538
13765
|
{
|
|
@@ -13540,29 +13767,20 @@ const MESSAGE_DEFINITIONS = [
|
|
|
13540
13767
|
name: 'ONBOARD_COMPUTER_STATUS',
|
|
13541
13768
|
fields: [
|
|
13542
13769
|
{
|
|
13543
|
-
name: '
|
|
13544
|
-
type: '
|
|
13545
|
-
arrayLength: 6,
|
|
13546
|
-
},
|
|
13547
|
-
{
|
|
13548
|
-
name: 'link_tx_rate',
|
|
13549
|
-
type: 'uint32_t',
|
|
13550
|
-
arrayLength: 6,
|
|
13770
|
+
name: 'time_usec',
|
|
13771
|
+
type: 'uint64_t',
|
|
13551
13772
|
},
|
|
13552
13773
|
{
|
|
13553
|
-
name: '
|
|
13774
|
+
name: 'uptime',
|
|
13554
13775
|
type: 'uint32_t',
|
|
13555
|
-
arrayLength: 6,
|
|
13556
13776
|
},
|
|
13557
13777
|
{
|
|
13558
|
-
name: '
|
|
13778
|
+
name: 'ram_usage',
|
|
13559
13779
|
type: 'uint32_t',
|
|
13560
|
-
arrayLength: 6,
|
|
13561
13780
|
},
|
|
13562
13781
|
{
|
|
13563
|
-
name: '
|
|
13782
|
+
name: 'ram_total',
|
|
13564
13783
|
type: 'uint32_t',
|
|
13565
|
-
arrayLength: 6,
|
|
13566
13784
|
},
|
|
13567
13785
|
{
|
|
13568
13786
|
name: 'storage_type',
|
|
@@ -13580,28 +13798,29 @@ const MESSAGE_DEFINITIONS = [
|
|
|
13580
13798
|
arrayLength: 4,
|
|
13581
13799
|
},
|
|
13582
13800
|
{
|
|
13583
|
-
name: '
|
|
13584
|
-
type: '
|
|
13585
|
-
arrayLength:
|
|
13801
|
+
name: 'link_type',
|
|
13802
|
+
type: 'uint32_t',
|
|
13803
|
+
arrayLength: 6,
|
|
13586
13804
|
},
|
|
13587
13805
|
{
|
|
13588
|
-
name: '
|
|
13589
|
-
type: '
|
|
13590
|
-
arrayLength:
|
|
13806
|
+
name: 'link_tx_rate',
|
|
13807
|
+
type: 'uint32_t',
|
|
13808
|
+
arrayLength: 6,
|
|
13591
13809
|
},
|
|
13592
13810
|
{
|
|
13593
|
-
name: '
|
|
13594
|
-
type: '
|
|
13811
|
+
name: 'link_rx_rate',
|
|
13812
|
+
type: 'uint32_t',
|
|
13813
|
+
arrayLength: 6,
|
|
13595
13814
|
},
|
|
13596
13815
|
{
|
|
13597
|
-
name: '
|
|
13598
|
-
type: '
|
|
13599
|
-
arrayLength:
|
|
13816
|
+
name: 'link_tx_max',
|
|
13817
|
+
type: 'uint32_t',
|
|
13818
|
+
arrayLength: 6,
|
|
13600
13819
|
},
|
|
13601
13820
|
{
|
|
13602
|
-
name: '
|
|
13603
|
-
type: '
|
|
13604
|
-
arrayLength:
|
|
13821
|
+
name: 'link_rx_max',
|
|
13822
|
+
type: 'uint32_t',
|
|
13823
|
+
arrayLength: 6,
|
|
13605
13824
|
},
|
|
13606
13825
|
{
|
|
13607
13826
|
name: 'fan_speed',
|
|
@@ -13609,46 +13828,49 @@ const MESSAGE_DEFINITIONS = [
|
|
|
13609
13828
|
arrayLength: 4,
|
|
13610
13829
|
},
|
|
13611
13830
|
{
|
|
13612
|
-
name: '
|
|
13613
|
-
type: '
|
|
13831
|
+
name: 'type',
|
|
13832
|
+
type: 'uint8_t',
|
|
13614
13833
|
},
|
|
13615
13834
|
{
|
|
13616
|
-
name: '
|
|
13835
|
+
name: 'cpu_cores',
|
|
13617
13836
|
type: 'uint8_t',
|
|
13618
|
-
arrayLength:
|
|
13837
|
+
arrayLength: 8,
|
|
13619
13838
|
},
|
|
13620
13839
|
{
|
|
13621
|
-
name: '
|
|
13622
|
-
type: '
|
|
13840
|
+
name: 'cpu_combined',
|
|
13841
|
+
type: 'uint8_t',
|
|
13842
|
+
arrayLength: 10,
|
|
13623
13843
|
},
|
|
13624
13844
|
{
|
|
13625
|
-
name: '
|
|
13626
|
-
type: '
|
|
13845
|
+
name: 'gpu_cores',
|
|
13846
|
+
type: 'uint8_t',
|
|
13847
|
+
arrayLength: 4,
|
|
13627
13848
|
},
|
|
13628
13849
|
{
|
|
13629
|
-
name: '
|
|
13850
|
+
name: 'gpu_combined',
|
|
13630
13851
|
type: 'uint8_t',
|
|
13852
|
+
arrayLength: 10,
|
|
13631
13853
|
},
|
|
13632
13854
|
{
|
|
13633
13855
|
name: 'temperature_board',
|
|
13634
13856
|
type: 'int8_t',
|
|
13635
13857
|
},
|
|
13858
|
+
{
|
|
13859
|
+
name: 'temperature_core',
|
|
13860
|
+
type: 'int8_t',
|
|
13861
|
+
arrayLength: 8,
|
|
13862
|
+
},
|
|
13863
|
+
{
|
|
13864
|
+
name: 'status_flags',
|
|
13865
|
+
type: 'uint16_t',
|
|
13866
|
+
extension: true,
|
|
13867
|
+
},
|
|
13636
13868
|
]
|
|
13637
13869
|
},
|
|
13638
13870
|
{
|
|
13639
13871
|
id: 395,
|
|
13640
13872
|
name: 'COMPONENT_INFORMATION',
|
|
13641
13873
|
fields: [
|
|
13642
|
-
{
|
|
13643
|
-
name: 'general_metadata_uri',
|
|
13644
|
-
type: 'char',
|
|
13645
|
-
arrayLength: 100,
|
|
13646
|
-
},
|
|
13647
|
-
{
|
|
13648
|
-
name: 'peripherals_metadata_uri',
|
|
13649
|
-
type: 'char',
|
|
13650
|
-
arrayLength: 100,
|
|
13651
|
-
},
|
|
13652
13874
|
{
|
|
13653
13875
|
name: 'time_boot_ms',
|
|
13654
13876
|
type: 'uint32_t',
|
|
@@ -13661,6 +13883,16 @@ const MESSAGE_DEFINITIONS = [
|
|
|
13661
13883
|
name: 'peripherals_metadata_file_crc',
|
|
13662
13884
|
type: 'uint32_t',
|
|
13663
13885
|
},
|
|
13886
|
+
{
|
|
13887
|
+
name: 'general_metadata_uri',
|
|
13888
|
+
type: 'char',
|
|
13889
|
+
arrayLength: 100,
|
|
13890
|
+
},
|
|
13891
|
+
{
|
|
13892
|
+
name: 'peripherals_metadata_uri',
|
|
13893
|
+
type: 'char',
|
|
13894
|
+
arrayLength: 100,
|
|
13895
|
+
},
|
|
13664
13896
|
]
|
|
13665
13897
|
},
|
|
13666
13898
|
{
|
|
@@ -13668,17 +13900,24 @@ const MESSAGE_DEFINITIONS = [
|
|
|
13668
13900
|
name: 'COMPONENT_INFORMATION_BASIC',
|
|
13669
13901
|
fields: [
|
|
13670
13902
|
{
|
|
13671
|
-
name: '
|
|
13672
|
-
type: '
|
|
13673
|
-
arrayLength: 32,
|
|
13903
|
+
name: 'capabilities',
|
|
13904
|
+
type: 'uint64_t',
|
|
13674
13905
|
},
|
|
13675
13906
|
{
|
|
13676
|
-
name: '
|
|
13907
|
+
name: 'time_boot_ms',
|
|
13908
|
+
type: 'uint32_t',
|
|
13909
|
+
},
|
|
13910
|
+
{
|
|
13911
|
+
name: 'time_manufacture_s',
|
|
13912
|
+
type: 'uint32_t',
|
|
13913
|
+
},
|
|
13914
|
+
{
|
|
13915
|
+
name: 'vendor_name',
|
|
13677
13916
|
type: 'char',
|
|
13678
13917
|
arrayLength: 32,
|
|
13679
13918
|
},
|
|
13680
13919
|
{
|
|
13681
|
-
name: '
|
|
13920
|
+
name: 'model_name',
|
|
13682
13921
|
type: 'char',
|
|
13683
13922
|
arrayLength: 32,
|
|
13684
13923
|
},
|
|
@@ -13693,16 +13932,9 @@ const MESSAGE_DEFINITIONS = [
|
|
|
13693
13932
|
arrayLength: 24,
|
|
13694
13933
|
},
|
|
13695
13934
|
{
|
|
13696
|
-
name: '
|
|
13697
|
-
type: '
|
|
13698
|
-
|
|
13699
|
-
{
|
|
13700
|
-
name: 'time_boot_ms',
|
|
13701
|
-
type: 'uint32_t',
|
|
13702
|
-
},
|
|
13703
|
-
{
|
|
13704
|
-
name: 'time_manufacture_s',
|
|
13705
|
-
type: 'uint32_t',
|
|
13935
|
+
name: 'serial_number',
|
|
13936
|
+
type: 'char',
|
|
13937
|
+
arrayLength: 32,
|
|
13706
13938
|
},
|
|
13707
13939
|
]
|
|
13708
13940
|
},
|
|
@@ -13710,11 +13942,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
13710
13942
|
id: 397,
|
|
13711
13943
|
name: 'COMPONENT_METADATA',
|
|
13712
13944
|
fields: [
|
|
13713
|
-
{
|
|
13714
|
-
name: 'uri',
|
|
13715
|
-
type: 'char',
|
|
13716
|
-
arrayLength: 100,
|
|
13717
|
-
},
|
|
13718
13945
|
{
|
|
13719
13946
|
name: 'time_boot_ms',
|
|
13720
13947
|
type: 'uint32_t',
|
|
@@ -13723,17 +13950,17 @@ const MESSAGE_DEFINITIONS = [
|
|
|
13723
13950
|
name: 'file_crc',
|
|
13724
13951
|
type: 'uint32_t',
|
|
13725
13952
|
},
|
|
13953
|
+
{
|
|
13954
|
+
name: 'uri',
|
|
13955
|
+
type: 'char',
|
|
13956
|
+
arrayLength: 100,
|
|
13957
|
+
},
|
|
13726
13958
|
]
|
|
13727
13959
|
},
|
|
13728
13960
|
{
|
|
13729
13961
|
id: 400,
|
|
13730
13962
|
name: 'PLAY_TUNE_V2',
|
|
13731
13963
|
fields: [
|
|
13732
|
-
{
|
|
13733
|
-
name: 'tune',
|
|
13734
|
-
type: 'char',
|
|
13735
|
-
arrayLength: 248,
|
|
13736
|
-
},
|
|
13737
13964
|
{
|
|
13738
13965
|
name: 'format',
|
|
13739
13966
|
type: 'uint32_t',
|
|
@@ -13746,6 +13973,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
13746
13973
|
name: 'target_component',
|
|
13747
13974
|
type: 'uint8_t',
|
|
13748
13975
|
},
|
|
13976
|
+
{
|
|
13977
|
+
name: 'tune',
|
|
13978
|
+
type: 'char',
|
|
13979
|
+
arrayLength: 248,
|
|
13980
|
+
},
|
|
13749
13981
|
]
|
|
13750
13982
|
},
|
|
13751
13983
|
{
|
|
@@ -13770,11 +14002,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
13770
14002
|
id: 410,
|
|
13771
14003
|
name: 'EVENT',
|
|
13772
14004
|
fields: [
|
|
13773
|
-
{
|
|
13774
|
-
name: 'arguments',
|
|
13775
|
-
type: 'uint8_t',
|
|
13776
|
-
arrayLength: 40,
|
|
13777
|
-
},
|
|
13778
14005
|
{
|
|
13779
14006
|
name: 'id',
|
|
13780
14007
|
type: 'uint32_t',
|
|
@@ -13799,6 +14026,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
13799
14026
|
name: 'log_levels',
|
|
13800
14027
|
type: 'uint8_t',
|
|
13801
14028
|
},
|
|
14029
|
+
{
|
|
14030
|
+
name: 'arguments',
|
|
14031
|
+
type: 'uint8_t',
|
|
14032
|
+
arrayLength: 40,
|
|
14033
|
+
},
|
|
13802
14034
|
]
|
|
13803
14035
|
},
|
|
13804
14036
|
{
|
|
@@ -13867,11 +14099,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
13867
14099
|
id: 435,
|
|
13868
14100
|
name: 'AVAILABLE_MODES',
|
|
13869
14101
|
fields: [
|
|
13870
|
-
{
|
|
13871
|
-
name: 'mode_name',
|
|
13872
|
-
type: 'char',
|
|
13873
|
-
arrayLength: 35,
|
|
13874
|
-
},
|
|
13875
14102
|
{
|
|
13876
14103
|
name: 'custom_mode',
|
|
13877
14104
|
type: 'uint32_t',
|
|
@@ -13892,6 +14119,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
13892
14119
|
name: 'standard_mode',
|
|
13893
14120
|
type: 'uint8_t',
|
|
13894
14121
|
},
|
|
14122
|
+
{
|
|
14123
|
+
name: 'mode_name',
|
|
14124
|
+
type: 'char',
|
|
14125
|
+
arrayLength: 35,
|
|
14126
|
+
},
|
|
13895
14127
|
]
|
|
13896
14128
|
},
|
|
13897
14129
|
{
|
|
@@ -13976,11 +14208,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
13976
14208
|
id: 387,
|
|
13977
14209
|
name: 'CANFD_FRAME',
|
|
13978
14210
|
fields: [
|
|
13979
|
-
{
|
|
13980
|
-
name: 'data',
|
|
13981
|
-
type: 'uint8_t',
|
|
13982
|
-
arrayLength: 64,
|
|
13983
|
-
},
|
|
13984
14211
|
{
|
|
13985
14212
|
name: 'id',
|
|
13986
14213
|
type: 'uint32_t',
|
|
@@ -14001,6 +14228,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
14001
14228
|
name: 'len',
|
|
14002
14229
|
type: 'uint8_t',
|
|
14003
14230
|
},
|
|
14231
|
+
{
|
|
14232
|
+
name: 'data',
|
|
14233
|
+
type: 'uint8_t',
|
|
14234
|
+
arrayLength: 64,
|
|
14235
|
+
},
|
|
14004
14236
|
]
|
|
14005
14237
|
},
|
|
14006
14238
|
{
|
|
@@ -14038,15 +14270,15 @@ const MESSAGE_DEFINITIONS = [
|
|
|
14038
14270
|
id: 9000,
|
|
14039
14271
|
name: 'WHEEL_DISTANCE',
|
|
14040
14272
|
fields: [
|
|
14273
|
+
{
|
|
14274
|
+
name: 'time_usec',
|
|
14275
|
+
type: 'uint64_t',
|
|
14276
|
+
},
|
|
14041
14277
|
{
|
|
14042
14278
|
name: 'distance',
|
|
14043
14279
|
type: 'double',
|
|
14044
14280
|
arrayLength: 16,
|
|
14045
14281
|
},
|
|
14046
|
-
{
|
|
14047
|
-
name: 'time_usec',
|
|
14048
|
-
type: 'uint64_t',
|
|
14049
|
-
},
|
|
14050
14282
|
{
|
|
14051
14283
|
name: 'count',
|
|
14052
14284
|
type: 'uint8_t',
|
|
@@ -14096,30 +14328,30 @@ const MESSAGE_DEFINITIONS = [
|
|
|
14096
14328
|
name: 'OPEN_DRONE_ID_BASIC_ID',
|
|
14097
14329
|
fields: [
|
|
14098
14330
|
{
|
|
14099
|
-
name: '
|
|
14331
|
+
name: 'target_system',
|
|
14100
14332
|
type: 'uint8_t',
|
|
14101
|
-
arrayLength: 20,
|
|
14102
14333
|
},
|
|
14103
14334
|
{
|
|
14104
|
-
name: '
|
|
14335
|
+
name: 'target_component',
|
|
14105
14336
|
type: 'uint8_t',
|
|
14106
|
-
arrayLength: 20,
|
|
14107
14337
|
},
|
|
14108
14338
|
{
|
|
14109
|
-
name: '
|
|
14339
|
+
name: 'id_or_mac',
|
|
14110
14340
|
type: 'uint8_t',
|
|
14341
|
+
arrayLength: 20,
|
|
14111
14342
|
},
|
|
14112
14343
|
{
|
|
14113
|
-
name: '
|
|
14344
|
+
name: 'id_type',
|
|
14114
14345
|
type: 'uint8_t',
|
|
14115
14346
|
},
|
|
14116
14347
|
{
|
|
14117
|
-
name: '
|
|
14348
|
+
name: 'ua_type',
|
|
14118
14349
|
type: 'uint8_t',
|
|
14119
14350
|
},
|
|
14120
14351
|
{
|
|
14121
|
-
name: '
|
|
14352
|
+
name: 'uas_id',
|
|
14122
14353
|
type: 'uint8_t',
|
|
14354
|
+
arrayLength: 20,
|
|
14123
14355
|
},
|
|
14124
14356
|
]
|
|
14125
14357
|
},
|
|
@@ -14127,11 +14359,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
14127
14359
|
id: 12901,
|
|
14128
14360
|
name: 'OPEN_DRONE_ID_LOCATION',
|
|
14129
14361
|
fields: [
|
|
14130
|
-
{
|
|
14131
|
-
name: 'id_or_mac',
|
|
14132
|
-
type: 'uint8_t',
|
|
14133
|
-
arrayLength: 20,
|
|
14134
|
-
},
|
|
14135
14362
|
{
|
|
14136
14363
|
name: 'latitude',
|
|
14137
14364
|
type: 'int32_t',
|
|
@@ -14176,6 +14403,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
14176
14403
|
name: 'target_component',
|
|
14177
14404
|
type: 'uint8_t',
|
|
14178
14405
|
},
|
|
14406
|
+
{
|
|
14407
|
+
name: 'id_or_mac',
|
|
14408
|
+
type: 'uint8_t',
|
|
14409
|
+
arrayLength: 20,
|
|
14410
|
+
},
|
|
14179
14411
|
{
|
|
14180
14412
|
name: 'status',
|
|
14181
14413
|
type: 'uint8_t',
|
|
@@ -14210,16 +14442,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
14210
14442
|
id: 12902,
|
|
14211
14443
|
name: 'OPEN_DRONE_ID_AUTHENTICATION',
|
|
14212
14444
|
fields: [
|
|
14213
|
-
{
|
|
14214
|
-
name: 'authentication_data',
|
|
14215
|
-
type: 'uint8_t',
|
|
14216
|
-
arrayLength: 23,
|
|
14217
|
-
},
|
|
14218
|
-
{
|
|
14219
|
-
name: 'id_or_mac',
|
|
14220
|
-
type: 'uint8_t',
|
|
14221
|
-
arrayLength: 20,
|
|
14222
|
-
},
|
|
14223
14445
|
{
|
|
14224
14446
|
name: 'timestamp',
|
|
14225
14447
|
type: 'uint32_t',
|
|
@@ -14232,6 +14454,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
14232
14454
|
name: 'target_component',
|
|
14233
14455
|
type: 'uint8_t',
|
|
14234
14456
|
},
|
|
14457
|
+
{
|
|
14458
|
+
name: 'id_or_mac',
|
|
14459
|
+
type: 'uint8_t',
|
|
14460
|
+
arrayLength: 20,
|
|
14461
|
+
},
|
|
14235
14462
|
{
|
|
14236
14463
|
name: 'authentication_type',
|
|
14237
14464
|
type: 'uint8_t',
|
|
@@ -14248,6 +14475,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
14248
14475
|
name: 'length',
|
|
14249
14476
|
type: 'uint8_t',
|
|
14250
14477
|
},
|
|
14478
|
+
{
|
|
14479
|
+
name: 'authentication_data',
|
|
14480
|
+
type: 'uint8_t',
|
|
14481
|
+
arrayLength: 23,
|
|
14482
|
+
},
|
|
14251
14483
|
]
|
|
14252
14484
|
},
|
|
14253
14485
|
{
|
|
@@ -14255,38 +14487,33 @@ const MESSAGE_DEFINITIONS = [
|
|
|
14255
14487
|
name: 'OPEN_DRONE_ID_SELF_ID',
|
|
14256
14488
|
fields: [
|
|
14257
14489
|
{
|
|
14258
|
-
name: '
|
|
14259
|
-
type: 'char',
|
|
14260
|
-
arrayLength: 23,
|
|
14261
|
-
},
|
|
14262
|
-
{
|
|
14263
|
-
name: 'id_or_mac',
|
|
14490
|
+
name: 'target_system',
|
|
14264
14491
|
type: 'uint8_t',
|
|
14265
|
-
arrayLength: 20,
|
|
14266
14492
|
},
|
|
14267
14493
|
{
|
|
14268
|
-
name: '
|
|
14494
|
+
name: 'target_component',
|
|
14269
14495
|
type: 'uint8_t',
|
|
14270
14496
|
},
|
|
14271
14497
|
{
|
|
14272
|
-
name: '
|
|
14498
|
+
name: 'id_or_mac',
|
|
14273
14499
|
type: 'uint8_t',
|
|
14500
|
+
arrayLength: 20,
|
|
14274
14501
|
},
|
|
14275
14502
|
{
|
|
14276
14503
|
name: 'description_type',
|
|
14277
14504
|
type: 'uint8_t',
|
|
14278
14505
|
},
|
|
14506
|
+
{
|
|
14507
|
+
name: 'description',
|
|
14508
|
+
type: 'char',
|
|
14509
|
+
arrayLength: 23,
|
|
14510
|
+
},
|
|
14279
14511
|
]
|
|
14280
14512
|
},
|
|
14281
14513
|
{
|
|
14282
14514
|
id: 12904,
|
|
14283
14515
|
name: 'OPEN_DRONE_ID_SYSTEM',
|
|
14284
14516
|
fields: [
|
|
14285
|
-
{
|
|
14286
|
-
name: 'id_or_mac',
|
|
14287
|
-
type: 'uint8_t',
|
|
14288
|
-
arrayLength: 20,
|
|
14289
|
-
},
|
|
14290
14517
|
{
|
|
14291
14518
|
name: 'operator_latitude',
|
|
14292
14519
|
type: 'int32_t',
|
|
@@ -14327,6 +14554,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
14327
14554
|
name: 'target_component',
|
|
14328
14555
|
type: 'uint8_t',
|
|
14329
14556
|
},
|
|
14557
|
+
{
|
|
14558
|
+
name: 'id_or_mac',
|
|
14559
|
+
type: 'uint8_t',
|
|
14560
|
+
arrayLength: 20,
|
|
14561
|
+
},
|
|
14330
14562
|
{
|
|
14331
14563
|
name: 'operator_location_type',
|
|
14332
14564
|
type: 'uint8_t',
|
|
@@ -14350,27 +14582,27 @@ const MESSAGE_DEFINITIONS = [
|
|
|
14350
14582
|
name: 'OPEN_DRONE_ID_OPERATOR_ID',
|
|
14351
14583
|
fields: [
|
|
14352
14584
|
{
|
|
14353
|
-
name: '
|
|
14585
|
+
name: 'target_system',
|
|
14354
14586
|
type: 'uint8_t',
|
|
14355
|
-
arrayLength: 20,
|
|
14356
14587
|
},
|
|
14357
14588
|
{
|
|
14358
|
-
name: '
|
|
14359
|
-
type: 'char',
|
|
14360
|
-
arrayLength: 20,
|
|
14361
|
-
},
|
|
14362
|
-
{
|
|
14363
|
-
name: 'target_system',
|
|
14589
|
+
name: 'target_component',
|
|
14364
14590
|
type: 'uint8_t',
|
|
14365
14591
|
},
|
|
14366
14592
|
{
|
|
14367
|
-
name: '
|
|
14593
|
+
name: 'id_or_mac',
|
|
14368
14594
|
type: 'uint8_t',
|
|
14595
|
+
arrayLength: 20,
|
|
14369
14596
|
},
|
|
14370
14597
|
{
|
|
14371
14598
|
name: 'operator_id_type',
|
|
14372
14599
|
type: 'uint8_t',
|
|
14373
14600
|
},
|
|
14601
|
+
{
|
|
14602
|
+
name: 'operator_id',
|
|
14603
|
+
type: 'char',
|
|
14604
|
+
arrayLength: 20,
|
|
14605
|
+
},
|
|
14374
14606
|
]
|
|
14375
14607
|
},
|
|
14376
14608
|
{
|
|
@@ -14378,30 +14610,30 @@ const MESSAGE_DEFINITIONS = [
|
|
|
14378
14610
|
name: 'OPEN_DRONE_ID_MESSAGE_PACK',
|
|
14379
14611
|
fields: [
|
|
14380
14612
|
{
|
|
14381
|
-
name: '
|
|
14613
|
+
name: 'target_system',
|
|
14382
14614
|
type: 'uint8_t',
|
|
14383
|
-
arrayLength: 225,
|
|
14384
14615
|
},
|
|
14385
14616
|
{
|
|
14386
|
-
name: '
|
|
14617
|
+
name: 'target_component',
|
|
14387
14618
|
type: 'uint8_t',
|
|
14388
|
-
arrayLength: 20,
|
|
14389
14619
|
},
|
|
14390
14620
|
{
|
|
14391
|
-
name: '
|
|
14621
|
+
name: 'id_or_mac',
|
|
14392
14622
|
type: 'uint8_t',
|
|
14623
|
+
arrayLength: 20,
|
|
14393
14624
|
},
|
|
14394
14625
|
{
|
|
14395
|
-
name: '
|
|
14626
|
+
name: 'single_message_size',
|
|
14396
14627
|
type: 'uint8_t',
|
|
14397
14628
|
},
|
|
14398
14629
|
{
|
|
14399
|
-
name: '
|
|
14630
|
+
name: 'msg_pack_size',
|
|
14400
14631
|
type: 'uint8_t',
|
|
14401
14632
|
},
|
|
14402
14633
|
{
|
|
14403
|
-
name: '
|
|
14634
|
+
name: 'messages',
|
|
14404
14635
|
type: 'uint8_t',
|
|
14636
|
+
arrayLength: 225,
|
|
14405
14637
|
},
|
|
14406
14638
|
]
|
|
14407
14639
|
},
|
|
@@ -14409,15 +14641,15 @@ const MESSAGE_DEFINITIONS = [
|
|
|
14409
14641
|
id: 12918,
|
|
14410
14642
|
name: 'OPEN_DRONE_ID_ARM_STATUS',
|
|
14411
14643
|
fields: [
|
|
14644
|
+
{
|
|
14645
|
+
name: 'status',
|
|
14646
|
+
type: 'uint8_t',
|
|
14647
|
+
},
|
|
14412
14648
|
{
|
|
14413
14649
|
name: 'error',
|
|
14414
14650
|
type: 'char',
|
|
14415
14651
|
arrayLength: 50,
|
|
14416
14652
|
},
|
|
14417
|
-
{
|
|
14418
|
-
name: 'status',
|
|
14419
|
-
type: 'uint8_t',
|
|
14420
|
-
},
|
|
14421
14653
|
]
|
|
14422
14654
|
},
|
|
14423
14655
|
{
|
|
@@ -14525,5 +14757,5 @@ class CommonSerializer {
|
|
|
14525
14757
|
}
|
|
14526
14758
|
}
|
|
14527
14759
|
|
|
14528
|
-
export { ACTUATOR_CONFIGURATIONEnum, ACTUATOR_OUTPUT_FUNCTIONEnum, ADSB_ALTITUDE_TYPEEnum, ADSB_EMITTER_TYPEEnum, ADSB_FLAGSEnum, AIS_FLAGSEnum, AIS_NAV_STATUSEnum, AIS_TYPEEnum, ATTITUDE_TARGET_TYPEMASKEnum, AUTOTUNE_AXISEnum, CAMERA_CAP_FLAGSEnum, CAMERA_MODEEnum, CAMERA_SOURCEEnum, CAMERA_TRACKING_MODEEnum, CAMERA_TRACKING_STATUS_FLAGSEnum, CAMERA_TRACKING_TARGET_DATAEnum, CAMERA_ZOOM_TYPEEnum, CAN_FILTER_OPEnum, CELLULAR_CONFIG_RESPONSEEnum, CELLULAR_NETWORK_FAILED_REASONEnum, CELLULAR_NETWORK_RADIO_TYPEEnum, CELLULAR_STATUS_FLAGEnum, COMP_METADATA_TYPEEnum, CommonParser, CommonSerializer, ESC_CONNECTION_TYPEEnum, ESC_FAILURE_FLAGSEnum, ESTIMATOR_STATUS_FLAGSEnum, FAILURE_TYPEEnum, FAILURE_UNITEnum, FENCE_BREACHEnum, FENCE_MITIGATEEnum, FENCE_TYPEEnum, FIRMWARE_VERSION_TYPEEnum, GIMBAL_DEVICE_CAP_FLAGSEnum, GIMBAL_DEVICE_ERROR_FLAGSEnum, GIMBAL_DEVICE_FLAGSEnum, GIMBAL_MANAGER_CAP_FLAGSEnum, GIMBAL_MANAGER_FLAGSEnum, GPS_FIX_TYPEEnum, GPS_INPUT_IGNORE_FLAGSEnum, GRIPPER_ACTIONSEnum, HIGHRES_IMU_UPDATED_FLAGSEnum, HIL_ACTUATOR_CONTROLS_FLAGSEnum, HIL_SENSOR_UPDATED_FLAGSEnum, HL_FAILURE_FLAGEnum, ILLUMINATOR_ERROR_FLAGSEnum, ILLUMINATOR_MODEEnum, LANDING_TARGET_TYPEEnum, MAG_CAL_STATUSEnum, MAVLINK_DATA_STREAM_TYPEEnum, MAV_ARM_AUTH_DENIED_REASONEnum, MAV_AUTOPILOTEnum, MAV_BATTERY_CHARGE_STATEEnum, MAV_BATTERY_FAULTEnum, MAV_BATTERY_FUNCTIONEnum, MAV_BATTERY_MODEEnum, MAV_BATTERY_TYPEEnum, MAV_BOOLEnum, MAV_CMDEnum, MAV_COLLISION_ACTIONEnum, MAV_COLLISION_SRCEnum, MAV_COLLISION_THREAT_LEVELEnum, MAV_COMPONENTEnum, MAV_DATA_STREAMEnum, MAV_DISTANCE_SENSOREnum, MAV_DO_REPOSITION_FLAGSEnum, MAV_ESTIMATOR_TYPEEnum, MAV_EVENT_CURRENT_SEQUENCE_FLAGSEnum, MAV_EVENT_ERROR_REASONEnum, MAV_FRAMEEnum, MAV_FTP_ERREnum, MAV_FTP_OPCODEEnum, MAV_FUEL_TYPEEnum, MAV_GENERATOR_STATUS_FLAGEnum, MAV_GOTOEnum, MAV_LANDED_STATEEnum, MAV_MISSION_RESULTEnum, MAV_MISSION_TYPEEnum, MAV_MODEEnum, MAV_MODE_FLAGEnum, MAV_MODE_FLAG_DECODE_POSITIONEnum, MAV_MODE_PROPERTYEnum, MAV_MOUNT_MODEEnum, MAV_ODID_ARM_STATUSEnum, MAV_ODID_AUTH_TYPEEnum, MAV_ODID_CATEGORY_EUEnum, MAV_ODID_CLASSIFICATION_TYPEEnum, MAV_ODID_CLASS_EUEnum, MAV_ODID_DESC_TYPEEnum, MAV_ODID_HEIGHT_REFEnum, MAV_ODID_HOR_ACCEnum, MAV_ODID_ID_TYPEEnum, MAV_ODID_OPERATOR_ID_TYPEEnum, MAV_ODID_OPERATOR_LOCATION_TYPEEnum, MAV_ODID_SPEED_ACCEnum, MAV_ODID_STATUSEnum, MAV_ODID_TIME_ACCEnum, MAV_ODID_UA_TYPEEnum, MAV_ODID_VER_ACCEnum, MAV_PARAM_EXT_TYPEEnum, MAV_PARAM_TYPEEnum, MAV_POWER_STATUSEnum, MAV_PROTOCOL_CAPABILITYEnum, MAV_RESULTEnum, MAV_ROIEnum, MAV_SENSOR_ORIENTATIONEnum, MAV_SEVERITYEnum, MAV_STANDARD_MODEEnum, MAV_STATEEnum, MAV_SYS_STATUS_SENSOREnum, MAV_SYS_STATUS_SENSOR_EXTENDEDEnum, MAV_TUNNEL_PAYLOAD_TYPEEnum, MAV_TYPEEnum, MAV_VTOL_STATEEnum, MAV_WINCH_STATUS_FLAGEnum, MISSION_STATEEnum, MOTOR_TEST_ORDEREnum, MOTOR_TEST_THROTTLE_TYPEEnum, NAV_VTOL_LAND_OPTIONSEnum, ORBIT_YAW_BEHAVIOUREnum, PARACHUTE_ACTIONEnum, PARAM_ACKEnum, POSITION_TARGET_TYPEMASKEnum, PRECISION_LAND_MODEEnum, PREFLIGHT_STORAGE_MISSION_ACTIONEnum, PREFLIGHT_STORAGE_PARAMETER_ACTIONEnum, RC_SUB_TYPEEnum, RC_TYPEEnum, REBOOT_SHUTDOWN_CONDITIONSEnum, RTK_BASELINE_COORDINATE_SYSTEMEnum, SAFETY_SWITCH_STATEEnum, SERIAL_CONTROL_DEVEnum, SERIAL_CONTROL_FLAGEnum, SET_FOCUS_TYPEEnum, SPEED_TYPEEnum, STORAGE_STATUSEnum, STORAGE_TYPEEnum, STORAGE_USAGE_FLAGEnum, TUNE_FORMATEnum, UAVCAN_NODE_HEALTHEnum, UAVCAN_NODE_MODEEnum, UTM_DATA_AVAIL_FLAGSEnum, UTM_FLIGHT_STATEEnum, VIDEO_STREAM_ENCODINGEnum, VIDEO_STREAM_STATUS_FLAGSEnum, VIDEO_STREAM_TYPEEnum, VTOL_TRANSITION_HEADINGEnum, WIFI_CONFIG_AP_MODEEnum, WIFI_CONFIG_AP_RESPONSEEnum, WINCH_ACTIONSEnum, isActuatorControlTarget, isActuatorOutputStatus, isAdsbVehicle, isAisVessel, isAltitude, isAttPosMocap, isAttitude, isAttitudeQuaternion, isAttitudeQuaternionCov, isAttitudeTarget, isAuthKey, isAutopilotStateForGimbalDevice, isAutopilotVersion, isAvailableModes, isAvailableModesMonitor, isBatteryInfo, isBatteryStatus, isButtonChange, isCameraCaptureStatus, isCameraFovStatus, isCameraImageCaptured, isCameraInformation, isCameraSettings, isCameraThermalRange, isCameraTrackingGeoStatus, isCameraTrackingImageStatus, isCameraTrigger, isCanFilterModify, isCanFrame, isCanfdFrame, isCellularConfig, isCellularStatus, isChangeOperatorControl, isChangeOperatorControlAck, isCollision, isCommandAck, isCommandCancel, isCommandInt, isCommandLong, isComponentInformation, isComponentInformationBasic, isComponentMetadata, isControlSystemState, isCurrentEventSequence, isCurrentMode, isDataStream, isDataTransmissionHandshake, isDebug, isDebugFloatArray, isDebugVect, isDistanceSensor, isEfiStatus, isEncapsulatedData, isEscInfo, isEscStatus, isEstimatorStatus, isEvent, isExtendedSysState, isFenceStatus, isFileTransferProtocol, isFlightInformation, isFollowTarget, isFuelStatus, isGeneratorStatus, isGimbalDeviceAttitudeStatus, isGimbalDeviceInformation, isGimbalDeviceSetAttitude, isGimbalManagerInformation, isGimbalManagerSetAttitude, isGimbalManagerSetManualControl, isGimbalManagerSetPitchyaw, isGimbalManagerStatus, isGlobalPositionInt, isGlobalPositionIntCov, isGlobalVisionPositionEstimate, isGps2Raw, isGps2Rtk, isGpsGlobalOrigin, isGpsInjectData, isGpsInput, isGpsRawInt, isGpsRtcmData, isGpsRtk, isGpsStatus, isHeartbeat, isHighLatency, isHighLatency2, isHighresImu, isHilActuatorControls, isHilControls, isHilGps, isHilOpticalFlow, isHilRcInputsRaw, isHilSensor, isHilState, isHilStateQuaternion, isHomePosition, isHygrometerSensor, isIlluminatorStatus, isIsbdLinkStatus, isLandingTarget, isLinkNodeStatus, isLocalPositionNed, isLocalPositionNedCov, isLocalPositionNedSystemGlobalOffset, isLogData, isLogEntry, isLogErase, isLogRequestData, isLogRequestEnd, isLogRequestList, isLoggingAck, isLoggingData, isLoggingDataAcked, isMagCalReport, isManualControl, isManualSetpoint, isMemoryVect, isMessageInterval, isMissionAck, isMissionClearAll, isMissionCount, isMissionCurrent, isMissionItem, isMissionItemInt, isMissionItemReached, isMissionRequest, isMissionRequestInt, isMissionRequestList, isMissionRequestPartialList, isMissionSetCurrent, isMissionWritePartialList, isMountOrientation, isNamedValueFloat, isNamedValueInt, isNavControllerOutput, isObstacleDistance, isOdometry, isOnboardComputerStatus, isOpenDroneIdArmStatus, isOpenDroneIdAuthentication, isOpenDroneIdBasicId, isOpenDroneIdLocation, isOpenDroneIdMessagePack, isOpenDroneIdOperatorId, isOpenDroneIdSelfId, isOpenDroneIdSystem, isOpenDroneIdSystemUpdate, isOpticalFlow, isOpticalFlowRad, isOrbitExecutionStatus, isParamExtAck, isParamExtRequestList, isParamExtRequestRead, isParamExtSet, isParamExtValue, isParamMapRc, isParamRequestList, isParamRequestRead, isParamSet, isParamValue, isPing, isPlayTune, isPlayTuneV2, isPositionTargetGlobalInt, isPositionTargetLocalNed, isPowerStatus, isProtocolVersion, isRadioStatus, isRawImu, isRawPressure, isRawRpm, isRcChannels, isRcChannelsOverride, isRcChannelsRaw, isRcChannelsScaled, isRequestDataStream, isRequestEvent, isResourceRequest, isResponseEventError, isSafetyAllowedArea, isSafetySetAllowedArea, isScaledImu, isScaledImu2, isScaledImu3, isScaledPressure, isScaledPressure2, isScaledPressure3, isSerialControl, isServoOutputRaw, isSetActuatorControlTarget, isSetAttitudeTarget, isSetGpsGlobalOrigin, isSetHomePosition, isSetMode, isSetPositionTargetGlobalInt, isSetPositionTargetLocalNed, isSetupSigning, isSimState, isSmartBatteryInfo, isStatustext, isStorageInformation, isSupportedTunes, isSysStatus, isSystemTime, isTerrainCheck, isTerrainData, isTerrainReport, isTerrainRequest, isTimeEstimateToTarget, isTimesync, isTrajectoryRepresentationBezier, isTrajectoryRepresentationWaypoints, isTunnel, isUavcanNodeInfo, isUavcanNodeStatus, isUtmGlobalPosition, isV2Extension, isVfrHud, isVibration, isViconPositionEstimate, isVideoStreamInformation, isVideoStreamStatus, isVisionPositionEstimate, isVisionSpeedEstimate, isWheelDistance, isWifiConfigAp, isWinchStatus, isWindCov };
|
|
14760
|
+
export { ACTUATOR_CONFIGURATIONEnum, ACTUATOR_OUTPUT_FUNCTIONEnum, ADSB_ALTITUDE_TYPEEnum, ADSB_EMITTER_TYPEEnum, ADSB_FLAGSEnum, AIRSPEED_SENSOR_FLAGSEnum, AIS_FLAGSEnum, AIS_NAV_STATUSEnum, AIS_TYPEEnum, ATTITUDE_TARGET_TYPEMASKEnum, AUTOTUNE_AXISEnum, CAMERA_CAP_FLAGSEnum, CAMERA_MODEEnum, CAMERA_SOURCEEnum, CAMERA_TRACKING_MODEEnum, CAMERA_TRACKING_STATUS_FLAGSEnum, CAMERA_TRACKING_TARGET_DATAEnum, CAMERA_ZOOM_TYPEEnum, CAN_FILTER_OPEnum, CELLULAR_CONFIG_RESPONSEEnum, CELLULAR_NETWORK_FAILED_REASONEnum, CELLULAR_NETWORK_RADIO_TYPEEnum, CELLULAR_STATUS_FLAGEnum, COMPUTER_STATUS_FLAGSEnum, COMP_METADATA_TYPEEnum, CommonParser, CommonSerializer, ESC_CONNECTION_TYPEEnum, ESC_FAILURE_FLAGSEnum, ESTIMATOR_STATUS_FLAGSEnum, FAILURE_TYPEEnum, FAILURE_UNITEnum, FENCE_BREACHEnum, FENCE_MITIGATEEnum, FENCE_TYPEEnum, FIRMWARE_VERSION_TYPEEnum, GIMBAL_DEVICE_CAP_FLAGSEnum, GIMBAL_DEVICE_ERROR_FLAGSEnum, GIMBAL_DEVICE_FLAGSEnum, GIMBAL_MANAGER_CAP_FLAGSEnum, GIMBAL_MANAGER_FLAGSEnum, GPS_FIX_TYPEEnum, GPS_INPUT_IGNORE_FLAGSEnum, GRIPPER_ACTIONSEnum, HIGHRES_IMU_UPDATED_FLAGSEnum, HIL_ACTUATOR_CONTROLS_FLAGSEnum, HIL_SENSOR_UPDATED_FLAGSEnum, HL_FAILURE_FLAGEnum, ILLUMINATOR_ERROR_FLAGSEnum, ILLUMINATOR_MODEEnum, LANDING_TARGET_TYPEEnum, MAG_CAL_STATUSEnum, MAVLINK_DATA_STREAM_TYPEEnum, MAV_ARM_AUTH_DENIED_REASONEnum, MAV_AUTOPILOTEnum, MAV_BATTERY_CHARGE_STATEEnum, MAV_BATTERY_FAULTEnum, MAV_BATTERY_FUNCTIONEnum, MAV_BATTERY_MODEEnum, MAV_BATTERY_TYPEEnum, MAV_BOOLEnum, MAV_CMDEnum, MAV_COLLISION_ACTIONEnum, MAV_COLLISION_SRCEnum, MAV_COLLISION_THREAT_LEVELEnum, MAV_COMPONENTEnum, MAV_DATA_STREAMEnum, MAV_DISTANCE_SENSOREnum, MAV_DO_REPOSITION_FLAGSEnum, MAV_ESTIMATOR_TYPEEnum, MAV_EVENT_CURRENT_SEQUENCE_FLAGSEnum, MAV_EVENT_ERROR_REASONEnum, MAV_FRAMEEnum, MAV_FTP_ERREnum, MAV_FTP_OPCODEEnum, MAV_FUEL_TYPEEnum, MAV_GENERATOR_STATUS_FLAGEnum, MAV_GOTOEnum, MAV_LANDED_STATEEnum, MAV_MISSION_RESULTEnum, MAV_MISSION_TYPEEnum, MAV_MODEEnum, MAV_MODE_FLAGEnum, MAV_MODE_FLAG_DECODE_POSITIONEnum, MAV_MODE_PROPERTYEnum, MAV_MOUNT_MODEEnum, MAV_ODID_ARM_STATUSEnum, MAV_ODID_AUTH_TYPEEnum, MAV_ODID_CATEGORY_EUEnum, MAV_ODID_CLASSIFICATION_TYPEEnum, MAV_ODID_CLASS_EUEnum, MAV_ODID_DESC_TYPEEnum, MAV_ODID_HEIGHT_REFEnum, MAV_ODID_HOR_ACCEnum, MAV_ODID_ID_TYPEEnum, MAV_ODID_OPERATOR_ID_TYPEEnum, MAV_ODID_OPERATOR_LOCATION_TYPEEnum, MAV_ODID_SPEED_ACCEnum, MAV_ODID_STATUSEnum, MAV_ODID_TIME_ACCEnum, MAV_ODID_UA_TYPEEnum, MAV_ODID_VER_ACCEnum, MAV_PARAM_ERROREnum, MAV_PARAM_EXT_TYPEEnum, MAV_PARAM_TYPEEnum, MAV_POWER_STATUSEnum, MAV_PROTOCOL_CAPABILITYEnum, MAV_RESULTEnum, MAV_ROIEnum, MAV_SENSOR_ORIENTATIONEnum, MAV_SEVERITYEnum, MAV_STANDARD_MODEEnum, MAV_STATEEnum, MAV_SYS_STATUS_SENSOREnum, MAV_SYS_STATUS_SENSOR_EXTENDEDEnum, MAV_TUNNEL_PAYLOAD_TYPEEnum, MAV_TYPEEnum, MAV_VTOL_STATEEnum, MAV_WINCH_STATUS_FLAGEnum, MISSION_STATEEnum, MOTOR_TEST_ORDEREnum, MOTOR_TEST_THROTTLE_TYPEEnum, NAV_VTOL_LAND_OPTIONSEnum, ORBIT_YAW_BEHAVIOUREnum, PARACHUTE_ACTIONEnum, PARAM_ACKEnum, POSITION_TARGET_TYPEMASKEnum, PRECISION_LAND_MODEEnum, PREFLIGHT_STORAGE_MISSION_ACTIONEnum, PREFLIGHT_STORAGE_PARAMETER_ACTIONEnum, RC_SUB_TYPEEnum, RC_TYPEEnum, REBOOT_SHUTDOWN_ACTIONEnum, REBOOT_SHUTDOWN_CONDITIONSEnum, RTK_BASELINE_COORDINATE_SYSTEMEnum, SAFETY_SWITCH_STATEEnum, SERIAL_CONTROL_DEVEnum, SERIAL_CONTROL_FLAGEnum, SET_FOCUS_TYPEEnum, SPEED_TYPEEnum, STORAGE_STATUSEnum, STORAGE_TYPEEnum, STORAGE_USAGE_FLAGEnum, TUNE_FORMATEnum, UAVCAN_NODE_HEALTHEnum, UAVCAN_NODE_MODEEnum, UTM_DATA_AVAIL_FLAGSEnum, UTM_FLIGHT_STATEEnum, VIDEO_STREAM_ENCODINGEnum, VIDEO_STREAM_STATUS_FLAGSEnum, VIDEO_STREAM_TYPEEnum, VTOL_TRANSITION_HEADINGEnum, WIFI_CONFIG_AP_MODEEnum, WIFI_CONFIG_AP_RESPONSEEnum, WINCH_ACTIONSEnum, isActuatorControlTarget, isActuatorOutputStatus, isAdsbVehicle, isAirspeed, isAisVessel, isAltitude, isAttPosMocap, isAttitude, isAttitudeQuaternion, isAttitudeQuaternionCov, isAttitudeTarget, isAuthKey, isAutopilotStateForGimbalDevice, isAutopilotVersion, isAvailableModes, isAvailableModesMonitor, isBatteryInfo, isBatteryStatus, isButtonChange, isCameraCaptureStatus, isCameraFovStatus, isCameraImageCaptured, isCameraInformation, isCameraSettings, isCameraThermalRange, isCameraTrackingGeoStatus, isCameraTrackingImageStatus, isCameraTrigger, isCanFilterModify, isCanFrame, isCanfdFrame, isCellularConfig, isCellularStatus, isChangeOperatorControl, isChangeOperatorControlAck, isCollision, isCommandAck, isCommandCancel, isCommandInt, isCommandLong, isComponentInformation, isComponentInformationBasic, isComponentMetadata, isControlSystemState, isCurrentEventSequence, isCurrentMode, isDataStream, isDataTransmissionHandshake, isDebug, isDebugFloatArray, isDebugVect, isDistanceSensor, isEfiStatus, isEncapsulatedData, isEscInfo, isEscStatus, isEstimatorStatus, isEvent, isExtendedSysState, isFenceStatus, isFigureEightExecutionStatus, isFileTransferProtocol, isFlightInformation, isFollowTarget, isFuelStatus, isGeneratorStatus, isGimbalDeviceAttitudeStatus, isGimbalDeviceInformation, isGimbalDeviceSetAttitude, isGimbalManagerInformation, isGimbalManagerSetAttitude, isGimbalManagerSetManualControl, isGimbalManagerSetPitchyaw, isGimbalManagerStatus, isGlobalPositionInt, isGlobalPositionIntCov, isGlobalVisionPositionEstimate, isGps2Raw, isGps2Rtk, isGpsGlobalOrigin, isGpsInjectData, isGpsInput, isGpsRawInt, isGpsRtcmData, isGpsRtk, isGpsStatus, isHeartbeat, isHighLatency, isHighLatency2, isHighresImu, isHilActuatorControls, isHilControls, isHilGps, isHilOpticalFlow, isHilRcInputsRaw, isHilSensor, isHilState, isHilStateQuaternion, isHomePosition, isHygrometerSensor, isIlluminatorStatus, isIsbdLinkStatus, isLandingTarget, isLinkNodeStatus, isLocalPositionNed, isLocalPositionNedCov, isLocalPositionNedSystemGlobalOffset, isLogData, isLogEntry, isLogErase, isLogRequestData, isLogRequestEnd, isLogRequestList, isLoggingAck, isLoggingData, isLoggingDataAcked, isMagCalReport, isManualControl, isManualSetpoint, isMemoryVect, isMessageInterval, isMissionAck, isMissionClearAll, isMissionCount, isMissionCurrent, isMissionItem, isMissionItemInt, isMissionItemReached, isMissionRequest, isMissionRequestInt, isMissionRequestList, isMissionRequestPartialList, isMissionSetCurrent, isMissionWritePartialList, isMountOrientation, isNamedValueFloat, isNamedValueInt, isNavControllerOutput, isObstacleDistance, isOdometry, isOnboardComputerStatus, isOpenDroneIdArmStatus, isOpenDroneIdAuthentication, isOpenDroneIdBasicId, isOpenDroneIdLocation, isOpenDroneIdMessagePack, isOpenDroneIdOperatorId, isOpenDroneIdSelfId, isOpenDroneIdSystem, isOpenDroneIdSystemUpdate, isOpticalFlow, isOpticalFlowRad, isOrbitExecutionStatus, isParamError, isParamExtAck, isParamExtRequestList, isParamExtRequestRead, isParamExtSet, isParamExtValue, isParamMapRc, isParamRequestList, isParamRequestRead, isParamSet, isParamValue, isPing, isPlayTune, isPlayTuneV2, isPositionTargetGlobalInt, isPositionTargetLocalNed, isPowerStatus, isProtocolVersion, isRadioStatus, isRawImu, isRawPressure, isRawRpm, isRcChannels, isRcChannelsOverride, isRcChannelsRaw, isRcChannelsScaled, isRequestDataStream, isRequestEvent, isResourceRequest, isResponseEventError, isSafetyAllowedArea, isSafetySetAllowedArea, isScaledImu, isScaledImu2, isScaledImu3, isScaledPressure, isScaledPressure2, isScaledPressure3, isSerialControl, isServoOutputRaw, isSetActuatorControlTarget, isSetAttitudeTarget, isSetGpsGlobalOrigin, isSetHomePosition, isSetMode, isSetPositionTargetGlobalInt, isSetPositionTargetLocalNed, isSetupSigning, isSimState, isSmartBatteryInfo, isStatustext, isStorageInformation, isSupportedTunes, isSysStatus, isSystemTime, isTerrainCheck, isTerrainData, isTerrainReport, isTerrainRequest, isTimeEstimateToTarget, isTimesync, isTrajectoryRepresentationBezier, isTrajectoryRepresentationWaypoints, isTunnel, isUavcanNodeInfo, isUavcanNodeStatus, isUtmGlobalPosition, isV2Extension, isVfrHud, isVibration, isViconPositionEstimate, isVideoStreamInformation, isVideoStreamStatus, isVisionPositionEstimate, isVisionSpeedEstimate, isWheelDistance, isWifiConfigAp, isWinchStatus, isWindCov };
|
|
14529
14761
|
//# sourceMappingURL=index.js.map
|