@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 pythonarray_test 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
|
}
|
|
@@ -4351,7 +4440,8 @@ function isArrayTest8(msg) {
|
|
|
4351
4440
|
// Embedded MAVLink CRC implementation
|
|
4352
4441
|
const CRC_EXTRA = {
|
|
4353
4442
|
0: 50,
|
|
4354
|
-
|
|
4443
|
+
33: 104,
|
|
4444
|
+
148: 106,
|
|
4355
4445
|
1: 124,
|
|
4356
4446
|
2: 137,
|
|
4357
4447
|
4: 237,
|
|
@@ -4373,7 +4463,6 @@ const CRC_EXTRA = {
|
|
|
4373
4463
|
30: 39,
|
|
4374
4464
|
31: 246,
|
|
4375
4465
|
32: 185,
|
|
4376
|
-
33: 104,
|
|
4377
4466
|
34: 237,
|
|
4378
4467
|
35: 244,
|
|
4379
4468
|
36: 222,
|
|
@@ -4468,7 +4557,6 @@ const CRC_EXTRA = {
|
|
|
4468
4557
|
144: 158,
|
|
4469
4558
|
146: 152,
|
|
4470
4559
|
147: 143,
|
|
4471
|
-
148: 106,
|
|
4472
4560
|
149: 49,
|
|
4473
4561
|
162: 0,
|
|
4474
4562
|
192: 0,
|
|
@@ -4523,7 +4611,9 @@ const CRC_EXTRA = {
|
|
|
4523
4611
|
288: 0,
|
|
4524
4612
|
290: 0,
|
|
4525
4613
|
291: 0,
|
|
4614
|
+
295: 0,
|
|
4526
4615
|
299: 0,
|
|
4616
|
+
300: 0,
|
|
4527
4617
|
301: 0,
|
|
4528
4618
|
310: 0,
|
|
4529
4619
|
311: 0,
|
|
@@ -4541,9 +4631,11 @@ const CRC_EXTRA = {
|
|
|
4541
4631
|
336: 0,
|
|
4542
4632
|
339: 0,
|
|
4543
4633
|
340: 0,
|
|
4634
|
+
345: 0,
|
|
4544
4635
|
350: 0,
|
|
4545
4636
|
360: 0,
|
|
4546
4637
|
370: 0,
|
|
4638
|
+
361: 0,
|
|
4547
4639
|
371: 0,
|
|
4548
4640
|
372: 0,
|
|
4549
4641
|
373: 0,
|
|
@@ -4749,7 +4841,11 @@ class DialectParser {
|
|
|
4749
4841
|
const result = {};
|
|
4750
4842
|
const view = new DataView(payload.buffer, payload.byteOffset, payload.byteLength);
|
|
4751
4843
|
let offset = 0;
|
|
4752
|
-
|
|
4844
|
+
// MAVLink v2 wire format: fields are sorted by type size (largest first)
|
|
4845
|
+
// Extension fields come after core fields and maintain their XML order
|
|
4846
|
+
// See: https://mavlink.io/en/guide/serialization.html#field_reordering
|
|
4847
|
+
const sortedFields = this.sortFieldsByWireOrder(fields);
|
|
4848
|
+
for (const field of sortedFields) {
|
|
4753
4849
|
if (offset >= payload.length) {
|
|
4754
4850
|
result[field.name] = this.getDefaultValue(field);
|
|
4755
4851
|
}
|
|
@@ -4761,6 +4857,43 @@ class DialectParser {
|
|
|
4761
4857
|
}
|
|
4762
4858
|
return result;
|
|
4763
4859
|
}
|
|
4860
|
+
// Sort fields by MAVLink v2 wire order: by type size descending, extensions last
|
|
4861
|
+
// Uses stable sort to preserve original order for same-size fields
|
|
4862
|
+
sortFieldsByWireOrder(fields) {
|
|
4863
|
+
// Separate core fields and extension fields
|
|
4864
|
+
const coreFields = [];
|
|
4865
|
+
const extensionFields = [];
|
|
4866
|
+
fields.forEach((field, index) => {
|
|
4867
|
+
if (field.extension) {
|
|
4868
|
+
extensionFields.push(field);
|
|
4869
|
+
}
|
|
4870
|
+
else {
|
|
4871
|
+
coreFields.push({ field, originalIndex: index });
|
|
4872
|
+
}
|
|
4873
|
+
});
|
|
4874
|
+
// Stable sort core fields by type size (descending)
|
|
4875
|
+
// Arrays are sorted by element type size, not total array size
|
|
4876
|
+
coreFields.sort((a, b) => {
|
|
4877
|
+
const sizeA = this.getFieldTypeSize(a.field);
|
|
4878
|
+
const sizeB = this.getFieldTypeSize(b.field);
|
|
4879
|
+
if (sizeB !== sizeA) {
|
|
4880
|
+
return sizeB - sizeA; // Descending order (largest first)
|
|
4881
|
+
}
|
|
4882
|
+
// Same size: maintain original XML order (stable sort)
|
|
4883
|
+
return a.originalIndex - b.originalIndex;
|
|
4884
|
+
});
|
|
4885
|
+
// Extension fields maintain their XML order and come after core fields
|
|
4886
|
+
return [...coreFields.map(c => c.field), ...extensionFields];
|
|
4887
|
+
}
|
|
4888
|
+
// Get the size of a single element of a field type (for wire order sorting)
|
|
4889
|
+
getFieldTypeSize(field) {
|
|
4890
|
+
let baseType = field.type;
|
|
4891
|
+
// Strip array notation to get base type (arrays sort by element type, not total size)
|
|
4892
|
+
if (baseType.includes('[') && baseType.includes(']')) {
|
|
4893
|
+
baseType = baseType.substring(0, baseType.indexOf('['));
|
|
4894
|
+
}
|
|
4895
|
+
return this.getSingleFieldSize(baseType);
|
|
4896
|
+
}
|
|
4764
4897
|
getDefaultValue(field) {
|
|
4765
4898
|
const isArray = field.arrayLength !== undefined && field.arrayLength > 1;
|
|
4766
4899
|
if (isArray) {
|
|
@@ -4967,15 +5100,19 @@ class DialectParser {
|
|
|
4967
5100
|
}
|
|
4968
5101
|
}
|
|
4969
5102
|
serializePayload(message, fields) {
|
|
5103
|
+
// MAVLink v2 wire format: fields must be sorted by type size (largest first)
|
|
5104
|
+
// Extension fields come after core fields and maintain their XML order
|
|
5105
|
+
// See: https://mavlink.io/en/guide/serialization.html#field_reordering
|
|
5106
|
+
const sortedFields = this.sortFieldsByWireOrder(fields);
|
|
4970
5107
|
// Calculate total payload size
|
|
4971
5108
|
let totalSize = 0;
|
|
4972
|
-
for (const field of
|
|
5109
|
+
for (const field of sortedFields) {
|
|
4973
5110
|
totalSize += this.getFieldSize(field);
|
|
4974
5111
|
}
|
|
4975
5112
|
const buffer = new ArrayBuffer(totalSize);
|
|
4976
5113
|
const view = new DataView(buffer);
|
|
4977
5114
|
let offset = 0;
|
|
4978
|
-
for (const field of
|
|
5115
|
+
for (const field of sortedFields) {
|
|
4979
5116
|
const value = message[field.name];
|
|
4980
5117
|
const bytesWritten = this.serializeField(view, offset, field, value);
|
|
4981
5118
|
offset += bytesWritten;
|
|
@@ -4987,8 +5124,7 @@ class DialectParser {
|
|
|
4987
5124
|
let corePayloadSize = 0;
|
|
4988
5125
|
let extensionStartOffset = 0;
|
|
4989
5126
|
let hasExtensions = false;
|
|
4990
|
-
|
|
4991
|
-
for (const field of fields) {
|
|
5127
|
+
for (const field of sortedFields) {
|
|
4992
5128
|
const fieldSize = this.getFieldSize(field);
|
|
4993
5129
|
// Check if this is an extension field using proper XML-based detection
|
|
4994
5130
|
const isExtensionField = field.extension === true;
|
|
@@ -5279,31 +5415,104 @@ const MESSAGE_DEFINITIONS = [
|
|
|
5279
5415
|
]
|
|
5280
5416
|
},
|
|
5281
5417
|
{
|
|
5282
|
-
id:
|
|
5283
|
-
name: '
|
|
5418
|
+
id: 33,
|
|
5419
|
+
name: 'GLOBAL_POSITION_INT',
|
|
5284
5420
|
fields: [
|
|
5285
5421
|
{
|
|
5286
|
-
name: '
|
|
5287
|
-
type: '
|
|
5288
|
-
arrayLength: 8,
|
|
5422
|
+
name: 'time_boot_ms',
|
|
5423
|
+
type: 'uint32_t',
|
|
5289
5424
|
},
|
|
5290
5425
|
{
|
|
5291
|
-
name: '
|
|
5292
|
-
type: '
|
|
5293
|
-
arrayLength: 8,
|
|
5426
|
+
name: 'lat',
|
|
5427
|
+
type: 'int32_t',
|
|
5294
5428
|
},
|
|
5295
5429
|
{
|
|
5296
|
-
name: '
|
|
5430
|
+
name: 'lon',
|
|
5431
|
+
type: 'int32_t',
|
|
5432
|
+
},
|
|
5433
|
+
{
|
|
5434
|
+
name: 'alt',
|
|
5435
|
+
type: 'int32_t',
|
|
5436
|
+
},
|
|
5437
|
+
{
|
|
5438
|
+
name: 'relative_alt',
|
|
5439
|
+
type: 'int32_t',
|
|
5440
|
+
},
|
|
5441
|
+
{
|
|
5442
|
+
name: 'vx',
|
|
5443
|
+
type: 'int16_t',
|
|
5444
|
+
},
|
|
5445
|
+
{
|
|
5446
|
+
name: 'vy',
|
|
5447
|
+
type: 'int16_t',
|
|
5448
|
+
},
|
|
5449
|
+
{
|
|
5450
|
+
name: 'vz',
|
|
5451
|
+
type: 'int16_t',
|
|
5452
|
+
},
|
|
5453
|
+
{
|
|
5454
|
+
name: 'hdg',
|
|
5297
5455
|
type: 'uint16_t',
|
|
5298
5456
|
},
|
|
5457
|
+
]
|
|
5458
|
+
},
|
|
5459
|
+
{
|
|
5460
|
+
id: 148,
|
|
5461
|
+
name: 'AUTOPILOT_VERSION',
|
|
5462
|
+
fields: [
|
|
5463
|
+
{
|
|
5464
|
+
name: 'capabilities',
|
|
5465
|
+
type: 'uint64_t',
|
|
5466
|
+
},
|
|
5299
5467
|
{
|
|
5300
|
-
name: '
|
|
5468
|
+
name: 'uid',
|
|
5469
|
+
type: 'uint64_t',
|
|
5470
|
+
},
|
|
5471
|
+
{
|
|
5472
|
+
name: 'flight_sw_version',
|
|
5473
|
+
type: 'uint32_t',
|
|
5474
|
+
},
|
|
5475
|
+
{
|
|
5476
|
+
name: 'middleware_sw_version',
|
|
5477
|
+
type: 'uint32_t',
|
|
5478
|
+
},
|
|
5479
|
+
{
|
|
5480
|
+
name: 'os_sw_version',
|
|
5481
|
+
type: 'uint32_t',
|
|
5482
|
+
},
|
|
5483
|
+
{
|
|
5484
|
+
name: 'board_version',
|
|
5485
|
+
type: 'uint32_t',
|
|
5486
|
+
},
|
|
5487
|
+
{
|
|
5488
|
+
name: 'vendor_id',
|
|
5301
5489
|
type: 'uint16_t',
|
|
5302
5490
|
},
|
|
5303
5491
|
{
|
|
5304
|
-
name: '
|
|
5492
|
+
name: 'product_id',
|
|
5305
5493
|
type: 'uint16_t',
|
|
5306
5494
|
},
|
|
5495
|
+
{
|
|
5496
|
+
name: 'flight_custom_version',
|
|
5497
|
+
type: 'uint8_t',
|
|
5498
|
+
arrayLength: 8,
|
|
5499
|
+
},
|
|
5500
|
+
{
|
|
5501
|
+
name: 'middleware_custom_version',
|
|
5502
|
+
type: 'uint8_t',
|
|
5503
|
+
arrayLength: 8,
|
|
5504
|
+
},
|
|
5505
|
+
{
|
|
5506
|
+
name: 'os_custom_version',
|
|
5507
|
+
type: 'uint8_t',
|
|
5508
|
+
arrayLength: 8,
|
|
5509
|
+
},
|
|
5510
|
+
{
|
|
5511
|
+
name: 'uid2',
|
|
5512
|
+
type: 'uint8_t',
|
|
5513
|
+
arrayLength: 18,
|
|
5514
|
+
extension: true,
|
|
5515
|
+
},
|
|
5307
5516
|
]
|
|
5308
5517
|
},
|
|
5309
5518
|
{
|
|
@@ -5419,11 +5628,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
5419
5628
|
id: 5,
|
|
5420
5629
|
name: 'CHANGE_OPERATOR_CONTROL',
|
|
5421
5630
|
fields: [
|
|
5422
|
-
{
|
|
5423
|
-
name: 'passkey',
|
|
5424
|
-
type: 'char',
|
|
5425
|
-
arrayLength: 25,
|
|
5426
|
-
},
|
|
5427
5631
|
{
|
|
5428
5632
|
name: 'target_system',
|
|
5429
5633
|
type: 'uint8_t',
|
|
@@ -5436,6 +5640,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
5436
5640
|
name: 'version',
|
|
5437
5641
|
type: 'uint8_t',
|
|
5438
5642
|
},
|
|
5643
|
+
{
|
|
5644
|
+
name: 'passkey',
|
|
5645
|
+
type: 'char',
|
|
5646
|
+
arrayLength: 25,
|
|
5647
|
+
},
|
|
5439
5648
|
]
|
|
5440
5649
|
},
|
|
5441
5650
|
{
|
|
@@ -5539,11 +5748,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
5539
5748
|
id: 20,
|
|
5540
5749
|
name: 'PARAM_REQUEST_READ',
|
|
5541
5750
|
fields: [
|
|
5542
|
-
{
|
|
5543
|
-
name: 'param_id',
|
|
5544
|
-
type: 'char',
|
|
5545
|
-
arrayLength: 16,
|
|
5546
|
-
},
|
|
5547
5751
|
{
|
|
5548
5752
|
name: 'param_index',
|
|
5549
5753
|
type: 'int16_t',
|
|
@@ -5556,6 +5760,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
5556
5760
|
name: 'target_component',
|
|
5557
5761
|
type: 'uint8_t',
|
|
5558
5762
|
},
|
|
5763
|
+
{
|
|
5764
|
+
name: 'param_id',
|
|
5765
|
+
type: 'char',
|
|
5766
|
+
arrayLength: 16,
|
|
5767
|
+
},
|
|
5559
5768
|
]
|
|
5560
5769
|
},
|
|
5561
5770
|
{
|
|
@@ -5576,11 +5785,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
5576
5785
|
id: 22,
|
|
5577
5786
|
name: 'PARAM_VALUE',
|
|
5578
5787
|
fields: [
|
|
5579
|
-
{
|
|
5580
|
-
name: 'param_id',
|
|
5581
|
-
type: 'char',
|
|
5582
|
-
arrayLength: 16,
|
|
5583
|
-
},
|
|
5584
5788
|
{
|
|
5585
5789
|
name: 'param_value',
|
|
5586
5790
|
type: 'float',
|
|
@@ -5593,6 +5797,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
5593
5797
|
name: 'param_index',
|
|
5594
5798
|
type: 'uint16_t',
|
|
5595
5799
|
},
|
|
5800
|
+
{
|
|
5801
|
+
name: 'param_id',
|
|
5802
|
+
type: 'char',
|
|
5803
|
+
arrayLength: 16,
|
|
5804
|
+
},
|
|
5596
5805
|
{
|
|
5597
5806
|
name: 'param_type',
|
|
5598
5807
|
type: 'uint8_t',
|
|
@@ -5603,11 +5812,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
5603
5812
|
id: 23,
|
|
5604
5813
|
name: 'PARAM_SET',
|
|
5605
5814
|
fields: [
|
|
5606
|
-
{
|
|
5607
|
-
name: 'param_id',
|
|
5608
|
-
type: 'char',
|
|
5609
|
-
arrayLength: 16,
|
|
5610
|
-
},
|
|
5611
5815
|
{
|
|
5612
5816
|
name: 'param_value',
|
|
5613
5817
|
type: 'float',
|
|
@@ -5620,6 +5824,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
5620
5824
|
name: 'target_component',
|
|
5621
5825
|
type: 'uint8_t',
|
|
5622
5826
|
},
|
|
5827
|
+
{
|
|
5828
|
+
name: 'param_id',
|
|
5829
|
+
type: 'char',
|
|
5830
|
+
arrayLength: 16,
|
|
5831
|
+
},
|
|
5623
5832
|
{
|
|
5624
5833
|
name: 'param_type',
|
|
5625
5834
|
type: 'uint8_t',
|
|
@@ -5706,6 +5915,10 @@ const MESSAGE_DEFINITIONS = [
|
|
|
5706
5915
|
id: 25,
|
|
5707
5916
|
name: 'GPS_STATUS',
|
|
5708
5917
|
fields: [
|
|
5918
|
+
{
|
|
5919
|
+
name: 'satellites_visible',
|
|
5920
|
+
type: 'uint8_t',
|
|
5921
|
+
},
|
|
5709
5922
|
{
|
|
5710
5923
|
name: 'satellite_prn',
|
|
5711
5924
|
type: 'uint8_t',
|
|
@@ -5731,10 +5944,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
5731
5944
|
type: 'uint8_t',
|
|
5732
5945
|
arrayLength: 20,
|
|
5733
5946
|
},
|
|
5734
|
-
{
|
|
5735
|
-
name: 'satellites_visible',
|
|
5736
|
-
type: 'uint8_t',
|
|
5737
|
-
},
|
|
5738
5947
|
]
|
|
5739
5948
|
},
|
|
5740
5949
|
{
|
|
@@ -6009,48 +6218,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
6009
6218
|
},
|
|
6010
6219
|
]
|
|
6011
6220
|
},
|
|
6012
|
-
{
|
|
6013
|
-
id: 33,
|
|
6014
|
-
name: 'GLOBAL_POSITION_INT',
|
|
6015
|
-
fields: [
|
|
6016
|
-
{
|
|
6017
|
-
name: 'time_boot_ms',
|
|
6018
|
-
type: 'uint32_t',
|
|
6019
|
-
},
|
|
6020
|
-
{
|
|
6021
|
-
name: 'lat',
|
|
6022
|
-
type: 'int32_t',
|
|
6023
|
-
},
|
|
6024
|
-
{
|
|
6025
|
-
name: 'lon',
|
|
6026
|
-
type: 'int32_t',
|
|
6027
|
-
},
|
|
6028
|
-
{
|
|
6029
|
-
name: 'alt',
|
|
6030
|
-
type: 'int32_t',
|
|
6031
|
-
},
|
|
6032
|
-
{
|
|
6033
|
-
name: 'relative_alt',
|
|
6034
|
-
type: 'int32_t',
|
|
6035
|
-
},
|
|
6036
|
-
{
|
|
6037
|
-
name: 'vx',
|
|
6038
|
-
type: 'int16_t',
|
|
6039
|
-
},
|
|
6040
|
-
{
|
|
6041
|
-
name: 'vy',
|
|
6042
|
-
type: 'int16_t',
|
|
6043
|
-
},
|
|
6044
|
-
{
|
|
6045
|
-
name: 'vz',
|
|
6046
|
-
type: 'int16_t',
|
|
6047
|
-
},
|
|
6048
|
-
{
|
|
6049
|
-
name: 'hdg',
|
|
6050
|
-
type: 'uint16_t',
|
|
6051
|
-
},
|
|
6052
|
-
]
|
|
6053
|
-
},
|
|
6054
6221
|
{
|
|
6055
6222
|
id: 34,
|
|
6056
6223
|
name: 'RC_CHANNELS_SCALED',
|
|
@@ -6597,11 +6764,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
6597
6764
|
id: 50,
|
|
6598
6765
|
name: 'PARAM_MAP_RC',
|
|
6599
6766
|
fields: [
|
|
6600
|
-
{
|
|
6601
|
-
name: 'param_id',
|
|
6602
|
-
type: 'char',
|
|
6603
|
-
arrayLength: 16,
|
|
6604
|
-
},
|
|
6605
6767
|
{
|
|
6606
6768
|
name: 'param_value0',
|
|
6607
6769
|
type: 'float',
|
|
@@ -6630,6 +6792,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
6630
6792
|
name: 'target_component',
|
|
6631
6793
|
type: 'uint8_t',
|
|
6632
6794
|
},
|
|
6795
|
+
{
|
|
6796
|
+
name: 'param_id',
|
|
6797
|
+
type: 'char',
|
|
6798
|
+
arrayLength: 16,
|
|
6799
|
+
},
|
|
6633
6800
|
{
|
|
6634
6801
|
name: 'parameter_rc_channel_index',
|
|
6635
6802
|
type: 'uint8_t',
|
|
@@ -6740,19 +6907,14 @@ const MESSAGE_DEFINITIONS = [
|
|
|
6740
6907
|
name: 'ATTITUDE_QUATERNION_COV',
|
|
6741
6908
|
fields: [
|
|
6742
6909
|
{
|
|
6743
|
-
name: '
|
|
6744
|
-
type: '
|
|
6745
|
-
arrayLength: 9,
|
|
6910
|
+
name: 'time_usec',
|
|
6911
|
+
type: 'uint64_t',
|
|
6746
6912
|
},
|
|
6747
6913
|
{
|
|
6748
6914
|
name: 'q',
|
|
6749
6915
|
type: 'float',
|
|
6750
6916
|
arrayLength: 4,
|
|
6751
6917
|
},
|
|
6752
|
-
{
|
|
6753
|
-
name: 'time_usec',
|
|
6754
|
-
type: 'uint64_t',
|
|
6755
|
-
},
|
|
6756
6918
|
{
|
|
6757
6919
|
name: 'rollspeed',
|
|
6758
6920
|
type: 'float',
|
|
@@ -6765,6 +6927,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
6765
6927
|
name: 'yawspeed',
|
|
6766
6928
|
type: 'float',
|
|
6767
6929
|
},
|
|
6930
|
+
{
|
|
6931
|
+
name: 'covariance',
|
|
6932
|
+
type: 'float',
|
|
6933
|
+
arrayLength: 9,
|
|
6934
|
+
},
|
|
6768
6935
|
]
|
|
6769
6936
|
},
|
|
6770
6937
|
{
|
|
@@ -6809,11 +6976,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
6809
6976
|
id: 63,
|
|
6810
6977
|
name: 'GLOBAL_POSITION_INT_COV',
|
|
6811
6978
|
fields: [
|
|
6812
|
-
{
|
|
6813
|
-
name: 'covariance',
|
|
6814
|
-
type: 'float',
|
|
6815
|
-
arrayLength: 36,
|
|
6816
|
-
},
|
|
6817
6979
|
{
|
|
6818
6980
|
name: 'time_usec',
|
|
6819
6981
|
type: 'uint64_t',
|
|
@@ -6846,6 +7008,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
6846
7008
|
name: 'vz',
|
|
6847
7009
|
type: 'float',
|
|
6848
7010
|
},
|
|
7011
|
+
{
|
|
7012
|
+
name: 'covariance',
|
|
7013
|
+
type: 'float',
|
|
7014
|
+
arrayLength: 36,
|
|
7015
|
+
},
|
|
6849
7016
|
{
|
|
6850
7017
|
name: 'estimator_type',
|
|
6851
7018
|
type: 'uint8_t',
|
|
@@ -6856,11 +7023,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
6856
7023
|
id: 64,
|
|
6857
7024
|
name: 'LOCAL_POSITION_NED_COV',
|
|
6858
7025
|
fields: [
|
|
6859
|
-
{
|
|
6860
|
-
name: 'covariance',
|
|
6861
|
-
type: 'float',
|
|
6862
|
-
arrayLength: 45,
|
|
6863
|
-
},
|
|
6864
7026
|
{
|
|
6865
7027
|
name: 'time_usec',
|
|
6866
7028
|
type: 'uint64_t',
|
|
@@ -6901,6 +7063,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
6901
7063
|
name: 'az',
|
|
6902
7064
|
type: 'float',
|
|
6903
7065
|
},
|
|
7066
|
+
{
|
|
7067
|
+
name: 'covariance',
|
|
7068
|
+
type: 'float',
|
|
7069
|
+
arrayLength: 45,
|
|
7070
|
+
},
|
|
6904
7071
|
{
|
|
6905
7072
|
name: 'estimator_type',
|
|
6906
7073
|
type: 'uint8_t',
|
|
@@ -7512,15 +7679,15 @@ const MESSAGE_DEFINITIONS = [
|
|
|
7512
7679
|
id: 82,
|
|
7513
7680
|
name: 'SET_ATTITUDE_TARGET',
|
|
7514
7681
|
fields: [
|
|
7682
|
+
{
|
|
7683
|
+
name: 'time_boot_ms',
|
|
7684
|
+
type: 'uint32_t',
|
|
7685
|
+
},
|
|
7515
7686
|
{
|
|
7516
7687
|
name: 'q',
|
|
7517
7688
|
type: 'float',
|
|
7518
7689
|
arrayLength: 4,
|
|
7519
7690
|
},
|
|
7520
|
-
{
|
|
7521
|
-
name: 'time_boot_ms',
|
|
7522
|
-
type: 'uint32_t',
|
|
7523
|
-
},
|
|
7524
7691
|
{
|
|
7525
7692
|
name: 'body_roll_rate',
|
|
7526
7693
|
type: 'float',
|
|
@@ -7561,15 +7728,15 @@ const MESSAGE_DEFINITIONS = [
|
|
|
7561
7728
|
id: 83,
|
|
7562
7729
|
name: 'ATTITUDE_TARGET',
|
|
7563
7730
|
fields: [
|
|
7731
|
+
{
|
|
7732
|
+
name: 'time_boot_ms',
|
|
7733
|
+
type: 'uint32_t',
|
|
7734
|
+
},
|
|
7564
7735
|
{
|
|
7565
7736
|
name: 'q',
|
|
7566
7737
|
type: 'float',
|
|
7567
7738
|
arrayLength: 4,
|
|
7568
7739
|
},
|
|
7569
|
-
{
|
|
7570
|
-
name: 'time_boot_ms',
|
|
7571
|
-
type: 'uint32_t',
|
|
7572
|
-
},
|
|
7573
7740
|
{
|
|
7574
7741
|
name: 'body_roll_rate',
|
|
7575
7742
|
type: 'float',
|
|
@@ -8076,11 +8243,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
8076
8243
|
id: 93,
|
|
8077
8244
|
name: 'HIL_ACTUATOR_CONTROLS',
|
|
8078
8245
|
fields: [
|
|
8079
|
-
{
|
|
8080
|
-
name: 'controls',
|
|
8081
|
-
type: 'float',
|
|
8082
|
-
arrayLength: 16,
|
|
8083
|
-
},
|
|
8084
8246
|
{
|
|
8085
8247
|
name: 'time_usec',
|
|
8086
8248
|
type: 'uint64_t',
|
|
@@ -8089,6 +8251,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
8089
8251
|
name: 'flags',
|
|
8090
8252
|
type: 'uint64_t',
|
|
8091
8253
|
},
|
|
8254
|
+
{
|
|
8255
|
+
name: 'controls',
|
|
8256
|
+
type: 'float',
|
|
8257
|
+
arrayLength: 16,
|
|
8258
|
+
},
|
|
8092
8259
|
{
|
|
8093
8260
|
name: 'mode',
|
|
8094
8261
|
type: 'uint8_t',
|
|
@@ -8640,11 +8807,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
8640
8807
|
id: 110,
|
|
8641
8808
|
name: 'FILE_TRANSFER_PROTOCOL',
|
|
8642
8809
|
fields: [
|
|
8643
|
-
{
|
|
8644
|
-
name: 'payload',
|
|
8645
|
-
type: 'uint8_t',
|
|
8646
|
-
arrayLength: 251,
|
|
8647
|
-
},
|
|
8648
8810
|
{
|
|
8649
8811
|
name: 'target_network',
|
|
8650
8812
|
type: 'uint8_t',
|
|
@@ -8657,6 +8819,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
8657
8819
|
name: 'target_component',
|
|
8658
8820
|
type: 'uint8_t',
|
|
8659
8821
|
},
|
|
8822
|
+
{
|
|
8823
|
+
name: 'payload',
|
|
8824
|
+
type: 'uint8_t',
|
|
8825
|
+
arrayLength: 251,
|
|
8826
|
+
},
|
|
8660
8827
|
]
|
|
8661
8828
|
},
|
|
8662
8829
|
{
|
|
@@ -8823,15 +8990,15 @@ const MESSAGE_DEFINITIONS = [
|
|
|
8823
8990
|
id: 115,
|
|
8824
8991
|
name: 'HIL_STATE_QUATERNION',
|
|
8825
8992
|
fields: [
|
|
8993
|
+
{
|
|
8994
|
+
name: 'time_usec',
|
|
8995
|
+
type: 'uint64_t',
|
|
8996
|
+
},
|
|
8826
8997
|
{
|
|
8827
8998
|
name: 'attitude_quaternion',
|
|
8828
8999
|
type: 'float',
|
|
8829
9000
|
arrayLength: 4,
|
|
8830
9001
|
},
|
|
8831
|
-
{
|
|
8832
|
-
name: 'time_usec',
|
|
8833
|
-
type: 'uint64_t',
|
|
8834
|
-
},
|
|
8835
9002
|
{
|
|
8836
9003
|
name: 'rollspeed',
|
|
8837
9004
|
type: 'float',
|
|
@@ -9019,11 +9186,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
9019
9186
|
id: 120,
|
|
9020
9187
|
name: 'LOG_DATA',
|
|
9021
9188
|
fields: [
|
|
9022
|
-
{
|
|
9023
|
-
name: 'data',
|
|
9024
|
-
type: 'uint8_t',
|
|
9025
|
-
arrayLength: 90,
|
|
9026
|
-
},
|
|
9027
9189
|
{
|
|
9028
9190
|
name: 'ofs',
|
|
9029
9191
|
type: 'uint32_t',
|
|
@@ -9036,6 +9198,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
9036
9198
|
name: 'count',
|
|
9037
9199
|
type: 'uint8_t',
|
|
9038
9200
|
},
|
|
9201
|
+
{
|
|
9202
|
+
name: 'data',
|
|
9203
|
+
type: 'uint8_t',
|
|
9204
|
+
arrayLength: 90,
|
|
9205
|
+
},
|
|
9039
9206
|
]
|
|
9040
9207
|
},
|
|
9041
9208
|
{
|
|
@@ -9070,11 +9237,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
9070
9237
|
id: 123,
|
|
9071
9238
|
name: 'GPS_INJECT_DATA',
|
|
9072
9239
|
fields: [
|
|
9073
|
-
{
|
|
9074
|
-
name: 'data',
|
|
9075
|
-
type: 'uint8_t',
|
|
9076
|
-
arrayLength: 110,
|
|
9077
|
-
},
|
|
9078
9240
|
{
|
|
9079
9241
|
name: 'target_system',
|
|
9080
9242
|
type: 'uint8_t',
|
|
@@ -9087,6 +9249,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
9087
9249
|
name: 'len',
|
|
9088
9250
|
type: 'uint8_t',
|
|
9089
9251
|
},
|
|
9252
|
+
{
|
|
9253
|
+
name: 'data',
|
|
9254
|
+
type: 'uint8_t',
|
|
9255
|
+
arrayLength: 110,
|
|
9256
|
+
},
|
|
9090
9257
|
]
|
|
9091
9258
|
},
|
|
9092
9259
|
{
|
|
@@ -9195,11 +9362,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
9195
9362
|
id: 126,
|
|
9196
9363
|
name: 'SERIAL_CONTROL',
|
|
9197
9364
|
fields: [
|
|
9198
|
-
{
|
|
9199
|
-
name: 'data',
|
|
9200
|
-
type: 'uint8_t',
|
|
9201
|
-
arrayLength: 70,
|
|
9202
|
-
},
|
|
9203
9365
|
{
|
|
9204
9366
|
name: 'baudrate',
|
|
9205
9367
|
type: 'uint32_t',
|
|
@@ -9220,6 +9382,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
9220
9382
|
name: 'count',
|
|
9221
9383
|
type: 'uint8_t',
|
|
9222
9384
|
},
|
|
9385
|
+
{
|
|
9386
|
+
name: 'data',
|
|
9387
|
+
type: 'uint8_t',
|
|
9388
|
+
arrayLength: 70,
|
|
9389
|
+
},
|
|
9223
9390
|
{
|
|
9224
9391
|
name: 'target_system',
|
|
9225
9392
|
type: 'uint8_t',
|
|
@@ -9437,15 +9604,15 @@ const MESSAGE_DEFINITIONS = [
|
|
|
9437
9604
|
id: 131,
|
|
9438
9605
|
name: 'ENCAPSULATED_DATA',
|
|
9439
9606
|
fields: [
|
|
9607
|
+
{
|
|
9608
|
+
name: 'seqnr',
|
|
9609
|
+
type: 'uint16_t',
|
|
9610
|
+
},
|
|
9440
9611
|
{
|
|
9441
9612
|
name: 'data',
|
|
9442
9613
|
type: 'uint8_t',
|
|
9443
9614
|
arrayLength: 253,
|
|
9444
9615
|
},
|
|
9445
|
-
{
|
|
9446
|
-
name: 'seqnr',
|
|
9447
|
-
type: 'uint16_t',
|
|
9448
|
-
},
|
|
9449
9616
|
]
|
|
9450
9617
|
},
|
|
9451
9618
|
{
|
|
@@ -9533,11 +9700,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
9533
9700
|
id: 134,
|
|
9534
9701
|
name: 'TERRAIN_DATA',
|
|
9535
9702
|
fields: [
|
|
9536
|
-
{
|
|
9537
|
-
name: 'data',
|
|
9538
|
-
type: 'int16_t',
|
|
9539
|
-
arrayLength: 16,
|
|
9540
|
-
},
|
|
9541
9703
|
{
|
|
9542
9704
|
name: 'lat',
|
|
9543
9705
|
type: 'int32_t',
|
|
@@ -9550,6 +9712,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
9550
9712
|
name: 'grid_spacing',
|
|
9551
9713
|
type: 'uint16_t',
|
|
9552
9714
|
},
|
|
9715
|
+
{
|
|
9716
|
+
name: 'data',
|
|
9717
|
+
type: 'int16_t',
|
|
9718
|
+
arrayLength: 16,
|
|
9719
|
+
},
|
|
9553
9720
|
{
|
|
9554
9721
|
name: 'gridbit',
|
|
9555
9722
|
type: 'uint8_t',
|
|
@@ -9635,15 +9802,15 @@ const MESSAGE_DEFINITIONS = [
|
|
|
9635
9802
|
id: 138,
|
|
9636
9803
|
name: 'ATT_POS_MOCAP',
|
|
9637
9804
|
fields: [
|
|
9805
|
+
{
|
|
9806
|
+
name: 'time_usec',
|
|
9807
|
+
type: 'uint64_t',
|
|
9808
|
+
},
|
|
9638
9809
|
{
|
|
9639
9810
|
name: 'q',
|
|
9640
9811
|
type: 'float',
|
|
9641
9812
|
arrayLength: 4,
|
|
9642
9813
|
},
|
|
9643
|
-
{
|
|
9644
|
-
name: 'time_usec',
|
|
9645
|
-
type: 'uint64_t',
|
|
9646
|
-
},
|
|
9647
9814
|
{
|
|
9648
9815
|
name: 'x',
|
|
9649
9816
|
type: 'float',
|
|
@@ -9668,15 +9835,15 @@ const MESSAGE_DEFINITIONS = [
|
|
|
9668
9835
|
id: 139,
|
|
9669
9836
|
name: 'SET_ACTUATOR_CONTROL_TARGET',
|
|
9670
9837
|
fields: [
|
|
9838
|
+
{
|
|
9839
|
+
name: 'time_usec',
|
|
9840
|
+
type: 'uint64_t',
|
|
9841
|
+
},
|
|
9671
9842
|
{
|
|
9672
9843
|
name: 'controls',
|
|
9673
9844
|
type: 'float',
|
|
9674
9845
|
arrayLength: 8,
|
|
9675
9846
|
},
|
|
9676
|
-
{
|
|
9677
|
-
name: 'time_usec',
|
|
9678
|
-
type: 'uint64_t',
|
|
9679
|
-
},
|
|
9680
9847
|
{
|
|
9681
9848
|
name: 'group_mlx',
|
|
9682
9849
|
type: 'uint8_t',
|
|
@@ -9695,15 +9862,15 @@ const MESSAGE_DEFINITIONS = [
|
|
|
9695
9862
|
id: 140,
|
|
9696
9863
|
name: 'ACTUATOR_CONTROL_TARGET',
|
|
9697
9864
|
fields: [
|
|
9865
|
+
{
|
|
9866
|
+
name: 'time_usec',
|
|
9867
|
+
type: 'uint64_t',
|
|
9868
|
+
},
|
|
9698
9869
|
{
|
|
9699
9870
|
name: 'controls',
|
|
9700
9871
|
type: 'float',
|
|
9701
9872
|
arrayLength: 8,
|
|
9702
9873
|
},
|
|
9703
|
-
{
|
|
9704
|
-
name: 'time_usec',
|
|
9705
|
-
type: 'uint64_t',
|
|
9706
|
-
},
|
|
9707
9874
|
{
|
|
9708
9875
|
name: 'group_mlx',
|
|
9709
9876
|
type: 'uint8_t',
|
|
@@ -9749,26 +9916,26 @@ const MESSAGE_DEFINITIONS = [
|
|
|
9749
9916
|
name: 'RESOURCE_REQUEST',
|
|
9750
9917
|
fields: [
|
|
9751
9918
|
{
|
|
9752
|
-
name: '
|
|
9919
|
+
name: 'request_id',
|
|
9753
9920
|
type: 'uint8_t',
|
|
9754
|
-
arrayLength: 120,
|
|
9755
9921
|
},
|
|
9756
9922
|
{
|
|
9757
|
-
name: '
|
|
9923
|
+
name: 'uri_type',
|
|
9758
9924
|
type: 'uint8_t',
|
|
9759
|
-
arrayLength: 120,
|
|
9760
9925
|
},
|
|
9761
9926
|
{
|
|
9762
|
-
name: '
|
|
9927
|
+
name: 'uri',
|
|
9763
9928
|
type: 'uint8_t',
|
|
9929
|
+
arrayLength: 120,
|
|
9764
9930
|
},
|
|
9765
9931
|
{
|
|
9766
|
-
name: '
|
|
9932
|
+
name: 'transfer_type',
|
|
9767
9933
|
type: 'uint8_t',
|
|
9768
9934
|
},
|
|
9769
9935
|
{
|
|
9770
|
-
name: '
|
|
9936
|
+
name: 'storage',
|
|
9771
9937
|
type: 'uint8_t',
|
|
9938
|
+
arrayLength: 120,
|
|
9772
9939
|
},
|
|
9773
9940
|
]
|
|
9774
9941
|
},
|
|
@@ -9804,49 +9971,49 @@ const MESSAGE_DEFINITIONS = [
|
|
|
9804
9971
|
name: 'FOLLOW_TARGET',
|
|
9805
9972
|
fields: [
|
|
9806
9973
|
{
|
|
9807
|
-
name: '
|
|
9808
|
-
type: '
|
|
9809
|
-
arrayLength: 4,
|
|
9974
|
+
name: 'timestamp',
|
|
9975
|
+
type: 'uint64_t',
|
|
9810
9976
|
},
|
|
9811
9977
|
{
|
|
9812
|
-
name: '
|
|
9813
|
-
type: '
|
|
9814
|
-
arrayLength: 3,
|
|
9978
|
+
name: 'custom_state',
|
|
9979
|
+
type: 'uint64_t',
|
|
9815
9980
|
},
|
|
9816
9981
|
{
|
|
9817
|
-
name: '
|
|
9818
|
-
type: '
|
|
9819
|
-
arrayLength: 3,
|
|
9982
|
+
name: 'lat',
|
|
9983
|
+
type: 'int32_t',
|
|
9820
9984
|
},
|
|
9821
9985
|
{
|
|
9822
|
-
name: '
|
|
9823
|
-
type: '
|
|
9824
|
-
arrayLength: 3,
|
|
9986
|
+
name: 'lon',
|
|
9987
|
+
type: 'int32_t',
|
|
9825
9988
|
},
|
|
9826
9989
|
{
|
|
9827
|
-
name: '
|
|
9990
|
+
name: 'alt',
|
|
9828
9991
|
type: 'float',
|
|
9829
|
-
arrayLength: 3,
|
|
9830
9992
|
},
|
|
9831
9993
|
{
|
|
9832
|
-
name: '
|
|
9833
|
-
type: '
|
|
9994
|
+
name: 'vel',
|
|
9995
|
+
type: 'float',
|
|
9996
|
+
arrayLength: 3,
|
|
9834
9997
|
},
|
|
9835
9998
|
{
|
|
9836
|
-
name: '
|
|
9837
|
-
type: '
|
|
9999
|
+
name: 'acc',
|
|
10000
|
+
type: 'float',
|
|
10001
|
+
arrayLength: 3,
|
|
9838
10002
|
},
|
|
9839
10003
|
{
|
|
9840
|
-
name: '
|
|
9841
|
-
type: '
|
|
10004
|
+
name: 'attitude_q',
|
|
10005
|
+
type: 'float',
|
|
10006
|
+
arrayLength: 4,
|
|
9842
10007
|
},
|
|
9843
10008
|
{
|
|
9844
|
-
name: '
|
|
9845
|
-
type: '
|
|
10009
|
+
name: 'rates',
|
|
10010
|
+
type: 'float',
|
|
10011
|
+
arrayLength: 3,
|
|
9846
10012
|
},
|
|
9847
10013
|
{
|
|
9848
|
-
name: '
|
|
10014
|
+
name: 'position_cov',
|
|
9849
10015
|
type: 'float',
|
|
10016
|
+
arrayLength: 3,
|
|
9850
10017
|
},
|
|
9851
10018
|
{
|
|
9852
10019
|
name: 'est_capabilities',
|
|
@@ -9858,21 +10025,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
9858
10025
|
id: 146,
|
|
9859
10026
|
name: 'CONTROL_SYSTEM_STATE',
|
|
9860
10027
|
fields: [
|
|
9861
|
-
{
|
|
9862
|
-
name: 'q',
|
|
9863
|
-
type: 'float',
|
|
9864
|
-
arrayLength: 4,
|
|
9865
|
-
},
|
|
9866
|
-
{
|
|
9867
|
-
name: 'vel_variance',
|
|
9868
|
-
type: 'float',
|
|
9869
|
-
arrayLength: 3,
|
|
9870
|
-
},
|
|
9871
|
-
{
|
|
9872
|
-
name: 'pos_variance',
|
|
9873
|
-
type: 'float',
|
|
9874
|
-
arrayLength: 3,
|
|
9875
|
-
},
|
|
9876
10028
|
{
|
|
9877
10029
|
name: 'time_usec',
|
|
9878
10030
|
type: 'uint64_t',
|
|
@@ -9917,6 +10069,21 @@ const MESSAGE_DEFINITIONS = [
|
|
|
9917
10069
|
name: 'airspeed',
|
|
9918
10070
|
type: 'float',
|
|
9919
10071
|
},
|
|
10072
|
+
{
|
|
10073
|
+
name: 'vel_variance',
|
|
10074
|
+
type: 'float',
|
|
10075
|
+
arrayLength: 3,
|
|
10076
|
+
},
|
|
10077
|
+
{
|
|
10078
|
+
name: 'pos_variance',
|
|
10079
|
+
type: 'float',
|
|
10080
|
+
arrayLength: 3,
|
|
10081
|
+
},
|
|
10082
|
+
{
|
|
10083
|
+
name: 'q',
|
|
10084
|
+
type: 'float',
|
|
10085
|
+
arrayLength: 4,
|
|
10086
|
+
},
|
|
9920
10087
|
{
|
|
9921
10088
|
name: 'roll_rate',
|
|
9922
10089
|
type: 'float',
|
|
@@ -9935,11 +10102,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
9935
10102
|
id: 147,
|
|
9936
10103
|
name: 'BATTERY_STATUS',
|
|
9937
10104
|
fields: [
|
|
9938
|
-
{
|
|
9939
|
-
name: 'voltages',
|
|
9940
|
-
type: 'uint16_t',
|
|
9941
|
-
arrayLength: 10,
|
|
9942
|
-
},
|
|
9943
10105
|
{
|
|
9944
10106
|
name: 'current_consumed',
|
|
9945
10107
|
type: 'int32_t',
|
|
@@ -9952,6 +10114,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
9952
10114
|
name: 'temperature',
|
|
9953
10115
|
type: 'int16_t',
|
|
9954
10116
|
},
|
|
10117
|
+
{
|
|
10118
|
+
name: 'voltages',
|
|
10119
|
+
type: 'uint16_t',
|
|
10120
|
+
arrayLength: 10,
|
|
10121
|
+
},
|
|
9955
10122
|
{
|
|
9956
10123
|
name: 'current_battery',
|
|
9957
10124
|
type: 'int16_t',
|
|
@@ -10000,65 +10167,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
10000
10167
|
},
|
|
10001
10168
|
]
|
|
10002
10169
|
},
|
|
10003
|
-
{
|
|
10004
|
-
id: 148,
|
|
10005
|
-
name: 'AUTOPILOT_VERSION',
|
|
10006
|
-
fields: [
|
|
10007
|
-
{
|
|
10008
|
-
name: 'capabilities',
|
|
10009
|
-
type: 'uint64_t',
|
|
10010
|
-
},
|
|
10011
|
-
{
|
|
10012
|
-
name: 'flight_custom_version',
|
|
10013
|
-
type: 'uint8_t',
|
|
10014
|
-
arrayLength: 8,
|
|
10015
|
-
},
|
|
10016
|
-
{
|
|
10017
|
-
name: 'middleware_custom_version',
|
|
10018
|
-
type: 'uint8_t',
|
|
10019
|
-
arrayLength: 8,
|
|
10020
|
-
},
|
|
10021
|
-
{
|
|
10022
|
-
name: 'os_custom_version',
|
|
10023
|
-
type: 'uint8_t',
|
|
10024
|
-
arrayLength: 8,
|
|
10025
|
-
},
|
|
10026
|
-
{
|
|
10027
|
-
name: 'uid',
|
|
10028
|
-
type: 'uint64_t',
|
|
10029
|
-
},
|
|
10030
|
-
{
|
|
10031
|
-
name: 'flight_sw_version',
|
|
10032
|
-
type: 'uint32_t',
|
|
10033
|
-
},
|
|
10034
|
-
{
|
|
10035
|
-
name: 'middleware_sw_version',
|
|
10036
|
-
type: 'uint32_t',
|
|
10037
|
-
},
|
|
10038
|
-
{
|
|
10039
|
-
name: 'os_sw_version',
|
|
10040
|
-
type: 'uint32_t',
|
|
10041
|
-
},
|
|
10042
|
-
{
|
|
10043
|
-
name: 'board_version',
|
|
10044
|
-
type: 'uint32_t',
|
|
10045
|
-
},
|
|
10046
|
-
{
|
|
10047
|
-
name: 'vendor_id',
|
|
10048
|
-
type: 'uint16_t',
|
|
10049
|
-
},
|
|
10050
|
-
{
|
|
10051
|
-
name: 'product_id',
|
|
10052
|
-
type: 'uint16_t',
|
|
10053
|
-
},
|
|
10054
|
-
{
|
|
10055
|
-
name: 'uid2',
|
|
10056
|
-
type: 'uint8_t',
|
|
10057
|
-
arrayLength: 18,
|
|
10058
|
-
extension: true,
|
|
10059
|
-
},
|
|
10060
|
-
]
|
|
10061
|
-
},
|
|
10062
10170
|
{
|
|
10063
10171
|
id: 149,
|
|
10064
10172
|
name: 'LANDING_TARGET',
|
|
@@ -10497,17 +10605,17 @@ const MESSAGE_DEFINITIONS = [
|
|
|
10497
10605
|
name: 'GPS_RTCM_DATA',
|
|
10498
10606
|
fields: [
|
|
10499
10607
|
{
|
|
10500
|
-
name: '
|
|
10608
|
+
name: 'flags',
|
|
10501
10609
|
type: 'uint8_t',
|
|
10502
|
-
arrayLength: 180,
|
|
10503
10610
|
},
|
|
10504
10611
|
{
|
|
10505
|
-
name: '
|
|
10612
|
+
name: 'len',
|
|
10506
10613
|
type: 'uint8_t',
|
|
10507
10614
|
},
|
|
10508
10615
|
{
|
|
10509
|
-
name: '
|
|
10616
|
+
name: 'data',
|
|
10510
10617
|
type: 'uint8_t',
|
|
10618
|
+
arrayLength: 180,
|
|
10511
10619
|
},
|
|
10512
10620
|
]
|
|
10513
10621
|
},
|
|
@@ -10765,11 +10873,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
10765
10873
|
id: 242,
|
|
10766
10874
|
name: 'HOME_POSITION',
|
|
10767
10875
|
fields: [
|
|
10768
|
-
{
|
|
10769
|
-
name: 'q',
|
|
10770
|
-
type: 'float',
|
|
10771
|
-
arrayLength: 4,
|
|
10772
|
-
},
|
|
10773
10876
|
{
|
|
10774
10877
|
name: 'latitude',
|
|
10775
10878
|
type: 'int32_t',
|
|
@@ -10794,6 +10897,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
10794
10897
|
name: 'z',
|
|
10795
10898
|
type: 'float',
|
|
10796
10899
|
},
|
|
10900
|
+
{
|
|
10901
|
+
name: 'q',
|
|
10902
|
+
type: 'float',
|
|
10903
|
+
arrayLength: 4,
|
|
10904
|
+
},
|
|
10797
10905
|
{
|
|
10798
10906
|
name: 'approach_x',
|
|
10799
10907
|
type: 'float',
|
|
@@ -10817,11 +10925,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
10817
10925
|
id: 243,
|
|
10818
10926
|
name: 'SET_HOME_POSITION',
|
|
10819
10927
|
fields: [
|
|
10820
|
-
{
|
|
10821
|
-
name: 'q',
|
|
10822
|
-
type: 'float',
|
|
10823
|
-
arrayLength: 4,
|
|
10824
|
-
},
|
|
10825
10928
|
{
|
|
10826
10929
|
name: 'latitude',
|
|
10827
10930
|
type: 'int32_t',
|
|
@@ -10846,6 +10949,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
10846
10949
|
name: 'z',
|
|
10847
10950
|
type: 'float',
|
|
10848
10951
|
},
|
|
10952
|
+
{
|
|
10953
|
+
name: 'q',
|
|
10954
|
+
type: 'float',
|
|
10955
|
+
arrayLength: 4,
|
|
10956
|
+
},
|
|
10849
10957
|
{
|
|
10850
10958
|
name: 'approach_x',
|
|
10851
10959
|
type: 'float',
|
|
@@ -10901,11 +11009,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
10901
11009
|
id: 246,
|
|
10902
11010
|
name: 'ADSB_VEHICLE',
|
|
10903
11011
|
fields: [
|
|
10904
|
-
{
|
|
10905
|
-
name: 'callsign',
|
|
10906
|
-
type: 'char',
|
|
10907
|
-
arrayLength: 9,
|
|
10908
|
-
},
|
|
10909
11012
|
{
|
|
10910
11013
|
name: 'icao_address',
|
|
10911
11014
|
type: 'uint32_t',
|
|
@@ -10946,6 +11049,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
10946
11049
|
name: 'altitude_type',
|
|
10947
11050
|
type: 'uint8_t',
|
|
10948
11051
|
},
|
|
11052
|
+
{
|
|
11053
|
+
name: 'callsign',
|
|
11054
|
+
type: 'char',
|
|
11055
|
+
arrayLength: 9,
|
|
11056
|
+
},
|
|
10949
11057
|
{
|
|
10950
11058
|
name: 'emitter_type',
|
|
10951
11059
|
type: 'uint8_t',
|
|
@@ -10994,11 +11102,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
10994
11102
|
id: 248,
|
|
10995
11103
|
name: 'V2_EXTENSION',
|
|
10996
11104
|
fields: [
|
|
10997
|
-
{
|
|
10998
|
-
name: 'payload',
|
|
10999
|
-
type: 'uint8_t',
|
|
11000
|
-
arrayLength: 249,
|
|
11001
|
-
},
|
|
11002
11105
|
{
|
|
11003
11106
|
name: 'message_type',
|
|
11004
11107
|
type: 'uint16_t',
|
|
@@ -11015,17 +11118,17 @@ const MESSAGE_DEFINITIONS = [
|
|
|
11015
11118
|
name: 'target_component',
|
|
11016
11119
|
type: 'uint8_t',
|
|
11017
11120
|
},
|
|
11121
|
+
{
|
|
11122
|
+
name: 'payload',
|
|
11123
|
+
type: 'uint8_t',
|
|
11124
|
+
arrayLength: 249,
|
|
11125
|
+
},
|
|
11018
11126
|
]
|
|
11019
11127
|
},
|
|
11020
11128
|
{
|
|
11021
11129
|
id: 249,
|
|
11022
11130
|
name: 'MEMORY_VECT',
|
|
11023
11131
|
fields: [
|
|
11024
|
-
{
|
|
11025
|
-
name: 'value',
|
|
11026
|
-
type: 'int8_t',
|
|
11027
|
-
arrayLength: 32,
|
|
11028
|
-
},
|
|
11029
11132
|
{
|
|
11030
11133
|
name: 'address',
|
|
11031
11134
|
type: 'uint16_t',
|
|
@@ -11038,17 +11141,17 @@ const MESSAGE_DEFINITIONS = [
|
|
|
11038
11141
|
name: 'type',
|
|
11039
11142
|
type: 'uint8_t',
|
|
11040
11143
|
},
|
|
11144
|
+
{
|
|
11145
|
+
name: 'value',
|
|
11146
|
+
type: 'int8_t',
|
|
11147
|
+
arrayLength: 32,
|
|
11148
|
+
},
|
|
11041
11149
|
]
|
|
11042
11150
|
},
|
|
11043
11151
|
{
|
|
11044
11152
|
id: 250,
|
|
11045
11153
|
name: 'DEBUG_VECT',
|
|
11046
11154
|
fields: [
|
|
11047
|
-
{
|
|
11048
|
-
name: 'name',
|
|
11049
|
-
type: 'char',
|
|
11050
|
-
arrayLength: 10,
|
|
11051
|
-
},
|
|
11052
11155
|
{
|
|
11053
11156
|
name: 'time_usec',
|
|
11054
11157
|
type: 'uint64_t',
|
|
@@ -11065,17 +11168,17 @@ const MESSAGE_DEFINITIONS = [
|
|
|
11065
11168
|
name: 'z',
|
|
11066
11169
|
type: 'float',
|
|
11067
11170
|
},
|
|
11171
|
+
{
|
|
11172
|
+
name: 'name',
|
|
11173
|
+
type: 'char',
|
|
11174
|
+
arrayLength: 10,
|
|
11175
|
+
},
|
|
11068
11176
|
]
|
|
11069
11177
|
},
|
|
11070
11178
|
{
|
|
11071
11179
|
id: 251,
|
|
11072
11180
|
name: 'NAMED_VALUE_FLOAT',
|
|
11073
11181
|
fields: [
|
|
11074
|
-
{
|
|
11075
|
-
name: 'name',
|
|
11076
|
-
type: 'char',
|
|
11077
|
-
arrayLength: 10,
|
|
11078
|
-
},
|
|
11079
11182
|
{
|
|
11080
11183
|
name: 'time_boot_ms',
|
|
11081
11184
|
type: 'uint32_t',
|
|
@@ -11084,17 +11187,17 @@ const MESSAGE_DEFINITIONS = [
|
|
|
11084
11187
|
name: 'value',
|
|
11085
11188
|
type: 'float',
|
|
11086
11189
|
},
|
|
11190
|
+
{
|
|
11191
|
+
name: 'name',
|
|
11192
|
+
type: 'char',
|
|
11193
|
+
arrayLength: 10,
|
|
11194
|
+
},
|
|
11087
11195
|
]
|
|
11088
11196
|
},
|
|
11089
11197
|
{
|
|
11090
11198
|
id: 252,
|
|
11091
11199
|
name: 'NAMED_VALUE_INT',
|
|
11092
11200
|
fields: [
|
|
11093
|
-
{
|
|
11094
|
-
name: 'name',
|
|
11095
|
-
type: 'char',
|
|
11096
|
-
arrayLength: 10,
|
|
11097
|
-
},
|
|
11098
11201
|
{
|
|
11099
11202
|
name: 'time_boot_ms',
|
|
11100
11203
|
type: 'uint32_t',
|
|
@@ -11103,21 +11206,26 @@ const MESSAGE_DEFINITIONS = [
|
|
|
11103
11206
|
name: 'value',
|
|
11104
11207
|
type: 'int32_t',
|
|
11105
11208
|
},
|
|
11209
|
+
{
|
|
11210
|
+
name: 'name',
|
|
11211
|
+
type: 'char',
|
|
11212
|
+
arrayLength: 10,
|
|
11213
|
+
},
|
|
11106
11214
|
]
|
|
11107
11215
|
},
|
|
11108
11216
|
{
|
|
11109
11217
|
id: 253,
|
|
11110
11218
|
name: 'STATUSTEXT',
|
|
11111
11219
|
fields: [
|
|
11220
|
+
{
|
|
11221
|
+
name: 'severity',
|
|
11222
|
+
type: 'uint8_t',
|
|
11223
|
+
},
|
|
11112
11224
|
{
|
|
11113
11225
|
name: 'text',
|
|
11114
11226
|
type: 'char',
|
|
11115
11227
|
arrayLength: 50,
|
|
11116
11228
|
},
|
|
11117
|
-
{
|
|
11118
|
-
name: 'severity',
|
|
11119
|
-
type: 'uint8_t',
|
|
11120
|
-
},
|
|
11121
11229
|
{
|
|
11122
11230
|
name: 'id',
|
|
11123
11231
|
type: 'uint16_t',
|
|
@@ -11152,11 +11260,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
11152
11260
|
id: 256,
|
|
11153
11261
|
name: 'SETUP_SIGNING',
|
|
11154
11262
|
fields: [
|
|
11155
|
-
{
|
|
11156
|
-
name: 'secret_key',
|
|
11157
|
-
type: 'uint8_t',
|
|
11158
|
-
arrayLength: 32,
|
|
11159
|
-
},
|
|
11160
11263
|
{
|
|
11161
11264
|
name: 'initial_timestamp',
|
|
11162
11265
|
type: 'uint64_t',
|
|
@@ -11169,6 +11272,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
11169
11272
|
name: 'target_component',
|
|
11170
11273
|
type: 'uint8_t',
|
|
11171
11274
|
},
|
|
11275
|
+
{
|
|
11276
|
+
name: 'secret_key',
|
|
11277
|
+
type: 'uint8_t',
|
|
11278
|
+
arrayLength: 32,
|
|
11279
|
+
},
|
|
11172
11280
|
]
|
|
11173
11281
|
},
|
|
11174
11282
|
{
|
|
@@ -11193,11 +11301,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
11193
11301
|
id: 258,
|
|
11194
11302
|
name: 'PLAY_TUNE',
|
|
11195
11303
|
fields: [
|
|
11196
|
-
{
|
|
11197
|
-
name: 'tune',
|
|
11198
|
-
type: 'char',
|
|
11199
|
-
arrayLength: 30,
|
|
11200
|
-
},
|
|
11201
11304
|
{
|
|
11202
11305
|
name: 'target_system',
|
|
11203
11306
|
type: 'uint8_t',
|
|
@@ -11206,6 +11309,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
11206
11309
|
name: 'target_component',
|
|
11207
11310
|
type: 'uint8_t',
|
|
11208
11311
|
},
|
|
11312
|
+
{
|
|
11313
|
+
name: 'tune',
|
|
11314
|
+
type: 'char',
|
|
11315
|
+
arrayLength: 30,
|
|
11316
|
+
},
|
|
11209
11317
|
{
|
|
11210
11318
|
name: 'tune2',
|
|
11211
11319
|
type: 'char',
|
|
@@ -11219,27 +11327,12 @@ const MESSAGE_DEFINITIONS = [
|
|
|
11219
11327
|
name: 'CAMERA_INFORMATION',
|
|
11220
11328
|
fields: [
|
|
11221
11329
|
{
|
|
11222
|
-
name: '
|
|
11223
|
-
type: '
|
|
11224
|
-
arrayLength: 140,
|
|
11330
|
+
name: 'time_boot_ms',
|
|
11331
|
+
type: 'uint32_t',
|
|
11225
11332
|
},
|
|
11226
11333
|
{
|
|
11227
|
-
name: '
|
|
11228
|
-
type: '
|
|
11229
|
-
arrayLength: 32,
|
|
11230
|
-
},
|
|
11231
|
-
{
|
|
11232
|
-
name: 'model_name',
|
|
11233
|
-
type: 'uint8_t',
|
|
11234
|
-
arrayLength: 32,
|
|
11235
|
-
},
|
|
11236
|
-
{
|
|
11237
|
-
name: 'time_boot_ms',
|
|
11238
|
-
type: 'uint32_t',
|
|
11239
|
-
},
|
|
11240
|
-
{
|
|
11241
|
-
name: 'firmware_version',
|
|
11242
|
-
type: 'uint32_t',
|
|
11334
|
+
name: 'firmware_version',
|
|
11335
|
+
type: 'uint32_t',
|
|
11243
11336
|
},
|
|
11244
11337
|
{
|
|
11245
11338
|
name: 'focal_length',
|
|
@@ -11269,10 +11362,25 @@ const MESSAGE_DEFINITIONS = [
|
|
|
11269
11362
|
name: 'cam_definition_version',
|
|
11270
11363
|
type: 'uint16_t',
|
|
11271
11364
|
},
|
|
11365
|
+
{
|
|
11366
|
+
name: 'vendor_name',
|
|
11367
|
+
type: 'uint8_t',
|
|
11368
|
+
arrayLength: 32,
|
|
11369
|
+
},
|
|
11370
|
+
{
|
|
11371
|
+
name: 'model_name',
|
|
11372
|
+
type: 'uint8_t',
|
|
11373
|
+
arrayLength: 32,
|
|
11374
|
+
},
|
|
11272
11375
|
{
|
|
11273
11376
|
name: 'lens_id',
|
|
11274
11377
|
type: 'uint8_t',
|
|
11275
11378
|
},
|
|
11379
|
+
{
|
|
11380
|
+
name: 'cam_definition_uri',
|
|
11381
|
+
type: 'char',
|
|
11382
|
+
arrayLength: 140,
|
|
11383
|
+
},
|
|
11276
11384
|
{
|
|
11277
11385
|
name: 'gimbal_device_id',
|
|
11278
11386
|
type: 'uint8_t',
|
|
@@ -11416,16 +11524,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
11416
11524
|
id: 263,
|
|
11417
11525
|
name: 'CAMERA_IMAGE_CAPTURED',
|
|
11418
11526
|
fields: [
|
|
11419
|
-
{
|
|
11420
|
-
name: 'file_url',
|
|
11421
|
-
type: 'char',
|
|
11422
|
-
arrayLength: 205,
|
|
11423
|
-
},
|
|
11424
|
-
{
|
|
11425
|
-
name: 'q',
|
|
11426
|
-
type: 'float',
|
|
11427
|
-
arrayLength: 4,
|
|
11428
|
-
},
|
|
11429
11527
|
{
|
|
11430
11528
|
name: 'time_utc',
|
|
11431
11529
|
type: 'uint64_t',
|
|
@@ -11450,6 +11548,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
11450
11548
|
name: 'relative_alt',
|
|
11451
11549
|
type: 'int32_t',
|
|
11452
11550
|
},
|
|
11551
|
+
{
|
|
11552
|
+
name: 'q',
|
|
11553
|
+
type: 'float',
|
|
11554
|
+
arrayLength: 4,
|
|
11555
|
+
},
|
|
11453
11556
|
{
|
|
11454
11557
|
name: 'image_index',
|
|
11455
11558
|
type: 'int32_t',
|
|
@@ -11462,6 +11565,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
11462
11565
|
name: 'capture_result',
|
|
11463
11566
|
type: 'int8_t',
|
|
11464
11567
|
},
|
|
11568
|
+
{
|
|
11569
|
+
name: 'file_url',
|
|
11570
|
+
type: 'char',
|
|
11571
|
+
arrayLength: 205,
|
|
11572
|
+
},
|
|
11465
11573
|
]
|
|
11466
11574
|
},
|
|
11467
11575
|
{
|
|
@@ -11522,11 +11630,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
11522
11630
|
id: 266,
|
|
11523
11631
|
name: 'LOGGING_DATA',
|
|
11524
11632
|
fields: [
|
|
11525
|
-
{
|
|
11526
|
-
name: 'data',
|
|
11527
|
-
type: 'uint8_t',
|
|
11528
|
-
arrayLength: 249,
|
|
11529
|
-
},
|
|
11530
11633
|
{
|
|
11531
11634
|
name: 'sequence',
|
|
11532
11635
|
type: 'uint16_t',
|
|
@@ -11547,17 +11650,17 @@ const MESSAGE_DEFINITIONS = [
|
|
|
11547
11650
|
name: 'first_message_offset',
|
|
11548
11651
|
type: 'uint8_t',
|
|
11549
11652
|
},
|
|
11653
|
+
{
|
|
11654
|
+
name: 'data',
|
|
11655
|
+
type: 'uint8_t',
|
|
11656
|
+
arrayLength: 249,
|
|
11657
|
+
},
|
|
11550
11658
|
]
|
|
11551
11659
|
},
|
|
11552
11660
|
{
|
|
11553
11661
|
id: 267,
|
|
11554
11662
|
name: 'LOGGING_DATA_ACKED',
|
|
11555
11663
|
fields: [
|
|
11556
|
-
{
|
|
11557
|
-
name: 'data',
|
|
11558
|
-
type: 'uint8_t',
|
|
11559
|
-
arrayLength: 249,
|
|
11560
|
-
},
|
|
11561
11664
|
{
|
|
11562
11665
|
name: 'sequence',
|
|
11563
11666
|
type: 'uint16_t',
|
|
@@ -11578,6 +11681,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
11578
11681
|
name: 'first_message_offset',
|
|
11579
11682
|
type: 'uint8_t',
|
|
11580
11683
|
},
|
|
11684
|
+
{
|
|
11685
|
+
name: 'data',
|
|
11686
|
+
type: 'uint8_t',
|
|
11687
|
+
arrayLength: 249,
|
|
11688
|
+
},
|
|
11581
11689
|
]
|
|
11582
11690
|
},
|
|
11583
11691
|
{
|
|
@@ -11602,16 +11710,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
11602
11710
|
id: 269,
|
|
11603
11711
|
name: 'VIDEO_STREAM_INFORMATION',
|
|
11604
11712
|
fields: [
|
|
11605
|
-
{
|
|
11606
|
-
name: 'uri',
|
|
11607
|
-
type: 'char',
|
|
11608
|
-
arrayLength: 160,
|
|
11609
|
-
},
|
|
11610
|
-
{
|
|
11611
|
-
name: 'name',
|
|
11612
|
-
type: 'char',
|
|
11613
|
-
arrayLength: 32,
|
|
11614
|
-
},
|
|
11615
11713
|
{
|
|
11616
11714
|
name: 'framerate',
|
|
11617
11715
|
type: 'float',
|
|
@@ -11652,6 +11750,16 @@ const MESSAGE_DEFINITIONS = [
|
|
|
11652
11750
|
name: 'type',
|
|
11653
11751
|
type: 'uint8_t',
|
|
11654
11752
|
},
|
|
11753
|
+
{
|
|
11754
|
+
name: 'name',
|
|
11755
|
+
type: 'char',
|
|
11756
|
+
arrayLength: 32,
|
|
11757
|
+
},
|
|
11758
|
+
{
|
|
11759
|
+
name: 'uri',
|
|
11760
|
+
type: 'char',
|
|
11761
|
+
arrayLength: 160,
|
|
11762
|
+
},
|
|
11655
11763
|
{
|
|
11656
11764
|
name: 'encoding',
|
|
11657
11765
|
type: 'uint8_t',
|
|
@@ -11711,11 +11819,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
11711
11819
|
id: 271,
|
|
11712
11820
|
name: 'CAMERA_FOV_STATUS',
|
|
11713
11821
|
fields: [
|
|
11714
|
-
{
|
|
11715
|
-
name: 'q',
|
|
11716
|
-
type: 'float',
|
|
11717
|
-
arrayLength: 4,
|
|
11718
|
-
},
|
|
11719
11822
|
{
|
|
11720
11823
|
name: 'time_boot_ms',
|
|
11721
11824
|
type: 'uint32_t',
|
|
@@ -11744,6 +11847,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
11744
11847
|
name: 'alt_image',
|
|
11745
11848
|
type: 'int32_t',
|
|
11746
11849
|
},
|
|
11850
|
+
{
|
|
11851
|
+
name: 'q',
|
|
11852
|
+
type: 'float',
|
|
11853
|
+
arrayLength: 4,
|
|
11854
|
+
},
|
|
11747
11855
|
{
|
|
11748
11856
|
name: 'hfov',
|
|
11749
11857
|
type: 'float',
|
|
@@ -11995,15 +12103,15 @@ const MESSAGE_DEFINITIONS = [
|
|
|
11995
12103
|
id: 282,
|
|
11996
12104
|
name: 'GIMBAL_MANAGER_SET_ATTITUDE',
|
|
11997
12105
|
fields: [
|
|
12106
|
+
{
|
|
12107
|
+
name: 'flags',
|
|
12108
|
+
type: 'uint32_t',
|
|
12109
|
+
},
|
|
11998
12110
|
{
|
|
11999
12111
|
name: 'q',
|
|
12000
12112
|
type: 'float',
|
|
12001
12113
|
arrayLength: 4,
|
|
12002
12114
|
},
|
|
12003
|
-
{
|
|
12004
|
-
name: 'flags',
|
|
12005
|
-
type: 'uint32_t',
|
|
12006
|
-
},
|
|
12007
12115
|
{
|
|
12008
12116
|
name: 'angular_velocity_x',
|
|
12009
12117
|
type: 'float',
|
|
@@ -12034,21 +12142,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
12034
12142
|
id: 283,
|
|
12035
12143
|
name: 'GIMBAL_DEVICE_INFORMATION',
|
|
12036
12144
|
fields: [
|
|
12037
|
-
{
|
|
12038
|
-
name: 'vendor_name',
|
|
12039
|
-
type: 'char',
|
|
12040
|
-
arrayLength: 32,
|
|
12041
|
-
},
|
|
12042
|
-
{
|
|
12043
|
-
name: 'model_name',
|
|
12044
|
-
type: 'char',
|
|
12045
|
-
arrayLength: 32,
|
|
12046
|
-
},
|
|
12047
|
-
{
|
|
12048
|
-
name: 'custom_name',
|
|
12049
|
-
type: 'char',
|
|
12050
|
-
arrayLength: 32,
|
|
12051
|
-
},
|
|
12052
12145
|
{
|
|
12053
12146
|
name: 'uid',
|
|
12054
12147
|
type: 'uint64_t',
|
|
@@ -12097,6 +12190,21 @@ const MESSAGE_DEFINITIONS = [
|
|
|
12097
12190
|
name: 'custom_cap_flags',
|
|
12098
12191
|
type: 'uint16_t',
|
|
12099
12192
|
},
|
|
12193
|
+
{
|
|
12194
|
+
name: 'vendor_name',
|
|
12195
|
+
type: 'char',
|
|
12196
|
+
arrayLength: 32,
|
|
12197
|
+
},
|
|
12198
|
+
{
|
|
12199
|
+
name: 'model_name',
|
|
12200
|
+
type: 'char',
|
|
12201
|
+
arrayLength: 32,
|
|
12202
|
+
},
|
|
12203
|
+
{
|
|
12204
|
+
name: 'custom_name',
|
|
12205
|
+
type: 'char',
|
|
12206
|
+
arrayLength: 32,
|
|
12207
|
+
},
|
|
12100
12208
|
{
|
|
12101
12209
|
name: 'gimbal_device_id',
|
|
12102
12210
|
type: 'uint8_t',
|
|
@@ -12143,15 +12251,15 @@ const MESSAGE_DEFINITIONS = [
|
|
|
12143
12251
|
id: 285,
|
|
12144
12252
|
name: 'GIMBAL_DEVICE_ATTITUDE_STATUS',
|
|
12145
12253
|
fields: [
|
|
12254
|
+
{
|
|
12255
|
+
name: 'time_boot_ms',
|
|
12256
|
+
type: 'uint32_t',
|
|
12257
|
+
},
|
|
12146
12258
|
{
|
|
12147
12259
|
name: 'q',
|
|
12148
12260
|
type: 'float',
|
|
12149
12261
|
arrayLength: 4,
|
|
12150
12262
|
},
|
|
12151
|
-
{
|
|
12152
|
-
name: 'time_boot_ms',
|
|
12153
|
-
type: 'uint32_t',
|
|
12154
|
-
},
|
|
12155
12263
|
{
|
|
12156
12264
|
name: 'angular_velocity_x',
|
|
12157
12265
|
type: 'float',
|
|
@@ -12201,15 +12309,15 @@ const MESSAGE_DEFINITIONS = [
|
|
|
12201
12309
|
id: 286,
|
|
12202
12310
|
name: 'AUTOPILOT_STATE_FOR_GIMBAL_DEVICE',
|
|
12203
12311
|
fields: [
|
|
12312
|
+
{
|
|
12313
|
+
name: 'time_boot_us',
|
|
12314
|
+
type: 'uint64_t',
|
|
12315
|
+
},
|
|
12204
12316
|
{
|
|
12205
12317
|
name: 'q',
|
|
12206
12318
|
type: 'float',
|
|
12207
12319
|
arrayLength: 4,
|
|
12208
12320
|
},
|
|
12209
|
-
{
|
|
12210
|
-
name: 'time_boot_us',
|
|
12211
|
-
type: 'uint64_t',
|
|
12212
|
-
},
|
|
12213
12321
|
{
|
|
12214
12322
|
name: 'q_estimated_delay_us',
|
|
12215
12323
|
type: 'uint32_t',
|
|
@@ -12337,14 +12445,18 @@ const MESSAGE_DEFINITIONS = [
|
|
|
12337
12445
|
id: 290,
|
|
12338
12446
|
name: 'ESC_INFO',
|
|
12339
12447
|
fields: [
|
|
12448
|
+
{
|
|
12449
|
+
name: 'time_usec',
|
|
12450
|
+
type: 'uint64_t',
|
|
12451
|
+
},
|
|
12340
12452
|
{
|
|
12341
12453
|
name: 'error_count',
|
|
12342
12454
|
type: 'uint32_t',
|
|
12343
12455
|
arrayLength: 4,
|
|
12344
12456
|
},
|
|
12345
12457
|
{
|
|
12346
|
-
name: '
|
|
12347
|
-
type: '
|
|
12458
|
+
name: 'counter',
|
|
12459
|
+
type: 'uint16_t',
|
|
12348
12460
|
},
|
|
12349
12461
|
{
|
|
12350
12462
|
name: 'failure_flags',
|
|
@@ -12356,10 +12468,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
12356
12468
|
type: 'int16_t',
|
|
12357
12469
|
arrayLength: 4,
|
|
12358
12470
|
},
|
|
12359
|
-
{
|
|
12360
|
-
name: 'counter',
|
|
12361
|
-
type: 'uint16_t',
|
|
12362
|
-
},
|
|
12363
12471
|
{
|
|
12364
12472
|
name: 'index',
|
|
12365
12473
|
type: 'uint8_t',
|
|
@@ -12382,6 +12490,10 @@ const MESSAGE_DEFINITIONS = [
|
|
|
12382
12490
|
id: 291,
|
|
12383
12491
|
name: 'ESC_STATUS',
|
|
12384
12492
|
fields: [
|
|
12493
|
+
{
|
|
12494
|
+
name: 'time_usec',
|
|
12495
|
+
type: 'uint64_t',
|
|
12496
|
+
},
|
|
12385
12497
|
{
|
|
12386
12498
|
name: 'rpm',
|
|
12387
12499
|
type: 'int32_t',
|
|
@@ -12398,11 +12510,33 @@ const MESSAGE_DEFINITIONS = [
|
|
|
12398
12510
|
arrayLength: 4,
|
|
12399
12511
|
},
|
|
12400
12512
|
{
|
|
12401
|
-
name: '
|
|
12402
|
-
type: '
|
|
12513
|
+
name: 'index',
|
|
12514
|
+
type: 'uint8_t',
|
|
12515
|
+
},
|
|
12516
|
+
]
|
|
12517
|
+
},
|
|
12518
|
+
{
|
|
12519
|
+
id: 295,
|
|
12520
|
+
name: 'AIRSPEED',
|
|
12521
|
+
fields: [
|
|
12522
|
+
{
|
|
12523
|
+
name: 'airspeed',
|
|
12524
|
+
type: 'float',
|
|
12403
12525
|
},
|
|
12404
12526
|
{
|
|
12405
|
-
name: '
|
|
12527
|
+
name: 'raw_press',
|
|
12528
|
+
type: 'float',
|
|
12529
|
+
},
|
|
12530
|
+
{
|
|
12531
|
+
name: 'temperature',
|
|
12532
|
+
type: 'int16_t',
|
|
12533
|
+
},
|
|
12534
|
+
{
|
|
12535
|
+
name: 'id',
|
|
12536
|
+
type: 'uint8_t',
|
|
12537
|
+
},
|
|
12538
|
+
{
|
|
12539
|
+
name: 'flags',
|
|
12406
12540
|
type: 'uint8_t',
|
|
12407
12541
|
},
|
|
12408
12542
|
]
|
|
@@ -12412,14 +12546,14 @@ const MESSAGE_DEFINITIONS = [
|
|
|
12412
12546
|
name: 'WIFI_CONFIG_AP',
|
|
12413
12547
|
fields: [
|
|
12414
12548
|
{
|
|
12415
|
-
name: '
|
|
12549
|
+
name: 'ssid',
|
|
12416
12550
|
type: 'char',
|
|
12417
|
-
arrayLength:
|
|
12551
|
+
arrayLength: 32,
|
|
12418
12552
|
},
|
|
12419
12553
|
{
|
|
12420
|
-
name: '
|
|
12554
|
+
name: 'password',
|
|
12421
12555
|
type: 'char',
|
|
12422
|
-
arrayLength:
|
|
12556
|
+
arrayLength: 64,
|
|
12423
12557
|
},
|
|
12424
12558
|
{
|
|
12425
12559
|
name: 'mode',
|
|
@@ -12434,19 +12568,37 @@ const MESSAGE_DEFINITIONS = [
|
|
|
12434
12568
|
]
|
|
12435
12569
|
},
|
|
12436
12570
|
{
|
|
12437
|
-
id:
|
|
12438
|
-
name: '
|
|
12571
|
+
id: 300,
|
|
12572
|
+
name: 'PROTOCOL_VERSION',
|
|
12439
12573
|
fields: [
|
|
12440
12574
|
{
|
|
12441
|
-
name: '
|
|
12442
|
-
type: '
|
|
12443
|
-
arrayLength: 20,
|
|
12575
|
+
name: 'version',
|
|
12576
|
+
type: 'uint16_t',
|
|
12444
12577
|
},
|
|
12445
12578
|
{
|
|
12446
|
-
name: '
|
|
12447
|
-
type: '
|
|
12448
|
-
|
|
12579
|
+
name: 'min_version',
|
|
12580
|
+
type: 'uint16_t',
|
|
12581
|
+
},
|
|
12582
|
+
{
|
|
12583
|
+
name: 'max_version',
|
|
12584
|
+
type: 'uint16_t',
|
|
12585
|
+
},
|
|
12586
|
+
{
|
|
12587
|
+
name: 'spec_version_hash',
|
|
12588
|
+
type: 'uint8_t',
|
|
12589
|
+
arrayLength: 8,
|
|
12449
12590
|
},
|
|
12591
|
+
{
|
|
12592
|
+
name: 'library_version_hash',
|
|
12593
|
+
type: 'uint8_t',
|
|
12594
|
+
arrayLength: 8,
|
|
12595
|
+
},
|
|
12596
|
+
]
|
|
12597
|
+
},
|
|
12598
|
+
{
|
|
12599
|
+
id: 301,
|
|
12600
|
+
name: 'AIS_VESSEL',
|
|
12601
|
+
fields: [
|
|
12450
12602
|
{
|
|
12451
12603
|
name: 'mmsi',
|
|
12452
12604
|
type: 'uint32_t',
|
|
@@ -12507,6 +12659,16 @@ const MESSAGE_DEFINITIONS = [
|
|
|
12507
12659
|
name: 'dimension_starboard',
|
|
12508
12660
|
type: 'uint8_t',
|
|
12509
12661
|
},
|
|
12662
|
+
{
|
|
12663
|
+
name: 'callsign',
|
|
12664
|
+
type: 'char',
|
|
12665
|
+
arrayLength: 7,
|
|
12666
|
+
},
|
|
12667
|
+
{
|
|
12668
|
+
name: 'name',
|
|
12669
|
+
type: 'char',
|
|
12670
|
+
arrayLength: 20,
|
|
12671
|
+
},
|
|
12510
12672
|
]
|
|
12511
12673
|
},
|
|
12512
12674
|
{
|
|
@@ -12543,16 +12705,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
12543
12705
|
id: 311,
|
|
12544
12706
|
name: 'UAVCAN_NODE_INFO',
|
|
12545
12707
|
fields: [
|
|
12546
|
-
{
|
|
12547
|
-
name: 'name',
|
|
12548
|
-
type: 'char',
|
|
12549
|
-
arrayLength: 80,
|
|
12550
|
-
},
|
|
12551
|
-
{
|
|
12552
|
-
name: 'hw_unique_id',
|
|
12553
|
-
type: 'uint8_t',
|
|
12554
|
-
arrayLength: 16,
|
|
12555
|
-
},
|
|
12556
12708
|
{
|
|
12557
12709
|
name: 'time_usec',
|
|
12558
12710
|
type: 'uint64_t',
|
|
@@ -12566,13 +12718,23 @@ const MESSAGE_DEFINITIONS = [
|
|
|
12566
12718
|
type: 'uint32_t',
|
|
12567
12719
|
},
|
|
12568
12720
|
{
|
|
12569
|
-
name: '
|
|
12721
|
+
name: 'name',
|
|
12722
|
+
type: 'char',
|
|
12723
|
+
arrayLength: 80,
|
|
12724
|
+
},
|
|
12725
|
+
{
|
|
12726
|
+
name: 'hw_version_major',
|
|
12570
12727
|
type: 'uint8_t',
|
|
12571
12728
|
},
|
|
12572
12729
|
{
|
|
12573
12730
|
name: 'hw_version_minor',
|
|
12574
12731
|
type: 'uint8_t',
|
|
12575
12732
|
},
|
|
12733
|
+
{
|
|
12734
|
+
name: 'hw_unique_id',
|
|
12735
|
+
type: 'uint8_t',
|
|
12736
|
+
arrayLength: 16,
|
|
12737
|
+
},
|
|
12576
12738
|
{
|
|
12577
12739
|
name: 'sw_version_major',
|
|
12578
12740
|
type: 'uint8_t',
|
|
@@ -12587,11 +12749,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
12587
12749
|
id: 320,
|
|
12588
12750
|
name: 'PARAM_EXT_REQUEST_READ',
|
|
12589
12751
|
fields: [
|
|
12590
|
-
{
|
|
12591
|
-
name: 'param_id',
|
|
12592
|
-
type: 'char',
|
|
12593
|
-
arrayLength: 16,
|
|
12594
|
-
},
|
|
12595
12752
|
{
|
|
12596
12753
|
name: 'param_index',
|
|
12597
12754
|
type: 'int16_t',
|
|
@@ -12604,6 +12761,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
12604
12761
|
name: 'target_component',
|
|
12605
12762
|
type: 'uint8_t',
|
|
12606
12763
|
},
|
|
12764
|
+
{
|
|
12765
|
+
name: 'param_id',
|
|
12766
|
+
type: 'char',
|
|
12767
|
+
arrayLength: 16,
|
|
12768
|
+
},
|
|
12607
12769
|
]
|
|
12608
12770
|
},
|
|
12609
12771
|
{
|
|
@@ -12625,9 +12787,12 @@ const MESSAGE_DEFINITIONS = [
|
|
|
12625
12787
|
name: 'PARAM_EXT_VALUE',
|
|
12626
12788
|
fields: [
|
|
12627
12789
|
{
|
|
12628
|
-
name: '
|
|
12629
|
-
type: '
|
|
12630
|
-
|
|
12790
|
+
name: 'param_count',
|
|
12791
|
+
type: 'uint16_t',
|
|
12792
|
+
},
|
|
12793
|
+
{
|
|
12794
|
+
name: 'param_index',
|
|
12795
|
+
type: 'uint16_t',
|
|
12631
12796
|
},
|
|
12632
12797
|
{
|
|
12633
12798
|
name: 'param_id',
|
|
@@ -12635,12 +12800,9 @@ const MESSAGE_DEFINITIONS = [
|
|
|
12635
12800
|
arrayLength: 16,
|
|
12636
12801
|
},
|
|
12637
12802
|
{
|
|
12638
|
-
name: '
|
|
12639
|
-
type: '
|
|
12640
|
-
|
|
12641
|
-
{
|
|
12642
|
-
name: 'param_index',
|
|
12643
|
-
type: 'uint16_t',
|
|
12803
|
+
name: 'param_value',
|
|
12804
|
+
type: 'char',
|
|
12805
|
+
arrayLength: 128,
|
|
12644
12806
|
},
|
|
12645
12807
|
{
|
|
12646
12808
|
name: 'param_type',
|
|
@@ -12653,9 +12815,12 @@ const MESSAGE_DEFINITIONS = [
|
|
|
12653
12815
|
name: 'PARAM_EXT_SET',
|
|
12654
12816
|
fields: [
|
|
12655
12817
|
{
|
|
12656
|
-
name: '
|
|
12657
|
-
type: '
|
|
12658
|
-
|
|
12818
|
+
name: 'target_system',
|
|
12819
|
+
type: 'uint8_t',
|
|
12820
|
+
},
|
|
12821
|
+
{
|
|
12822
|
+
name: 'target_component',
|
|
12823
|
+
type: 'uint8_t',
|
|
12659
12824
|
},
|
|
12660
12825
|
{
|
|
12661
12826
|
name: 'param_id',
|
|
@@ -12663,12 +12828,9 @@ const MESSAGE_DEFINITIONS = [
|
|
|
12663
12828
|
arrayLength: 16,
|
|
12664
12829
|
},
|
|
12665
12830
|
{
|
|
12666
|
-
name: '
|
|
12667
|
-
type: '
|
|
12668
|
-
|
|
12669
|
-
{
|
|
12670
|
-
name: 'target_component',
|
|
12671
|
-
type: 'uint8_t',
|
|
12831
|
+
name: 'param_value',
|
|
12832
|
+
type: 'char',
|
|
12833
|
+
arrayLength: 128,
|
|
12672
12834
|
},
|
|
12673
12835
|
{
|
|
12674
12836
|
name: 'param_type',
|
|
@@ -12681,14 +12843,14 @@ const MESSAGE_DEFINITIONS = [
|
|
|
12681
12843
|
name: 'PARAM_EXT_ACK',
|
|
12682
12844
|
fields: [
|
|
12683
12845
|
{
|
|
12684
|
-
name: '
|
|
12846
|
+
name: 'param_id',
|
|
12685
12847
|
type: 'char',
|
|
12686
|
-
arrayLength:
|
|
12848
|
+
arrayLength: 16,
|
|
12687
12849
|
},
|
|
12688
12850
|
{
|
|
12689
|
-
name: '
|
|
12851
|
+
name: 'param_value',
|
|
12690
12852
|
type: 'char',
|
|
12691
|
-
arrayLength:
|
|
12853
|
+
arrayLength: 128,
|
|
12692
12854
|
},
|
|
12693
12855
|
{
|
|
12694
12856
|
name: 'param_type',
|
|
@@ -12704,15 +12866,15 @@ const MESSAGE_DEFINITIONS = [
|
|
|
12704
12866
|
id: 330,
|
|
12705
12867
|
name: 'OBSTACLE_DISTANCE',
|
|
12706
12868
|
fields: [
|
|
12869
|
+
{
|
|
12870
|
+
name: 'time_usec',
|
|
12871
|
+
type: 'uint64_t',
|
|
12872
|
+
},
|
|
12707
12873
|
{
|
|
12708
12874
|
name: 'distances',
|
|
12709
12875
|
type: 'uint16_t',
|
|
12710
12876
|
arrayLength: 72,
|
|
12711
12877
|
},
|
|
12712
|
-
{
|
|
12713
|
-
name: 'time_usec',
|
|
12714
|
-
type: 'uint64_t',
|
|
12715
|
-
},
|
|
12716
12878
|
{
|
|
12717
12879
|
name: 'min_distance',
|
|
12718
12880
|
type: 'uint16_t',
|
|
@@ -12750,21 +12912,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
12750
12912
|
id: 331,
|
|
12751
12913
|
name: 'ODOMETRY',
|
|
12752
12914
|
fields: [
|
|
12753
|
-
{
|
|
12754
|
-
name: 'pose_covariance',
|
|
12755
|
-
type: 'float',
|
|
12756
|
-
arrayLength: 21,
|
|
12757
|
-
},
|
|
12758
|
-
{
|
|
12759
|
-
name: 'velocity_covariance',
|
|
12760
|
-
type: 'float',
|
|
12761
|
-
arrayLength: 21,
|
|
12762
|
-
},
|
|
12763
|
-
{
|
|
12764
|
-
name: 'q',
|
|
12765
|
-
type: 'float',
|
|
12766
|
-
arrayLength: 4,
|
|
12767
|
-
},
|
|
12768
12915
|
{
|
|
12769
12916
|
name: 'time_usec',
|
|
12770
12917
|
type: 'uint64_t',
|
|
@@ -12781,6 +12928,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
12781
12928
|
name: 'z',
|
|
12782
12929
|
type: 'float',
|
|
12783
12930
|
},
|
|
12931
|
+
{
|
|
12932
|
+
name: 'q',
|
|
12933
|
+
type: 'float',
|
|
12934
|
+
arrayLength: 4,
|
|
12935
|
+
},
|
|
12784
12936
|
{
|
|
12785
12937
|
name: 'vx',
|
|
12786
12938
|
type: 'float',
|
|
@@ -12805,6 +12957,16 @@ const MESSAGE_DEFINITIONS = [
|
|
|
12805
12957
|
name: 'yawspeed',
|
|
12806
12958
|
type: 'float',
|
|
12807
12959
|
},
|
|
12960
|
+
{
|
|
12961
|
+
name: 'pose_covariance',
|
|
12962
|
+
type: 'float',
|
|
12963
|
+
arrayLength: 21,
|
|
12964
|
+
},
|
|
12965
|
+
{
|
|
12966
|
+
name: 'velocity_covariance',
|
|
12967
|
+
type: 'float',
|
|
12968
|
+
arrayLength: 21,
|
|
12969
|
+
},
|
|
12808
12970
|
{
|
|
12809
12971
|
name: 'frame_id',
|
|
12810
12972
|
type: 'uint8_t',
|
|
@@ -12834,6 +12996,10 @@ const MESSAGE_DEFINITIONS = [
|
|
|
12834
12996
|
id: 332,
|
|
12835
12997
|
name: 'TRAJECTORY_REPRESENTATION_WAYPOINTS',
|
|
12836
12998
|
fields: [
|
|
12999
|
+
{
|
|
13000
|
+
name: 'time_usec',
|
|
13001
|
+
type: 'uint64_t',
|
|
13002
|
+
},
|
|
12837
13003
|
{
|
|
12838
13004
|
name: 'pos_x',
|
|
12839
13005
|
type: 'float',
|
|
@@ -12894,10 +13060,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
12894
13060
|
type: 'uint16_t',
|
|
12895
13061
|
arrayLength: 5,
|
|
12896
13062
|
},
|
|
12897
|
-
{
|
|
12898
|
-
name: 'time_usec',
|
|
12899
|
-
type: 'uint64_t',
|
|
12900
|
-
},
|
|
12901
13063
|
{
|
|
12902
13064
|
name: 'valid_points',
|
|
12903
13065
|
type: 'uint8_t',
|
|
@@ -12908,6 +13070,10 @@ const MESSAGE_DEFINITIONS = [
|
|
|
12908
13070
|
id: 333,
|
|
12909
13071
|
name: 'TRAJECTORY_REPRESENTATION_BEZIER',
|
|
12910
13072
|
fields: [
|
|
13073
|
+
{
|
|
13074
|
+
name: 'time_usec',
|
|
13075
|
+
type: 'uint64_t',
|
|
13076
|
+
},
|
|
12911
13077
|
{
|
|
12912
13078
|
name: 'pos_x',
|
|
12913
13079
|
type: 'float',
|
|
@@ -12933,10 +13099,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
12933
13099
|
type: 'float',
|
|
12934
13100
|
arrayLength: 5,
|
|
12935
13101
|
},
|
|
12936
|
-
{
|
|
12937
|
-
name: 'time_usec',
|
|
12938
|
-
type: 'uint64_t',
|
|
12939
|
-
},
|
|
12940
13102
|
{
|
|
12941
13103
|
name: 'valid_points',
|
|
12942
13104
|
type: 'uint8_t',
|
|
@@ -13020,9 +13182,12 @@ const MESSAGE_DEFINITIONS = [
|
|
|
13020
13182
|
name: 'CELLULAR_CONFIG',
|
|
13021
13183
|
fields: [
|
|
13022
13184
|
{
|
|
13023
|
-
name: '
|
|
13024
|
-
type: '
|
|
13025
|
-
|
|
13185
|
+
name: 'enable_lte',
|
|
13186
|
+
type: 'uint8_t',
|
|
13187
|
+
},
|
|
13188
|
+
{
|
|
13189
|
+
name: 'enable_pin',
|
|
13190
|
+
type: 'uint8_t',
|
|
13026
13191
|
},
|
|
13027
13192
|
{
|
|
13028
13193
|
name: 'pin',
|
|
@@ -13035,17 +13200,14 @@ const MESSAGE_DEFINITIONS = [
|
|
|
13035
13200
|
arrayLength: 16,
|
|
13036
13201
|
},
|
|
13037
13202
|
{
|
|
13038
|
-
name: '
|
|
13203
|
+
name: 'apn',
|
|
13039
13204
|
type: 'char',
|
|
13040
|
-
arrayLength:
|
|
13041
|
-
},
|
|
13042
|
-
{
|
|
13043
|
-
name: 'enable_lte',
|
|
13044
|
-
type: 'uint8_t',
|
|
13205
|
+
arrayLength: 32,
|
|
13045
13206
|
},
|
|
13046
13207
|
{
|
|
13047
|
-
name: '
|
|
13048
|
-
type: '
|
|
13208
|
+
name: 'puk',
|
|
13209
|
+
type: 'char',
|
|
13210
|
+
arrayLength: 16,
|
|
13049
13211
|
},
|
|
13050
13212
|
{
|
|
13051
13213
|
name: 'roaming',
|
|
@@ -13075,11 +13237,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
13075
13237
|
id: 340,
|
|
13076
13238
|
name: 'UTM_GLOBAL_POSITION',
|
|
13077
13239
|
fields: [
|
|
13078
|
-
{
|
|
13079
|
-
name: 'uas_id',
|
|
13080
|
-
type: 'uint8_t',
|
|
13081
|
-
arrayLength: 18,
|
|
13082
|
-
},
|
|
13083
13240
|
{
|
|
13084
13241
|
name: 'time',
|
|
13085
13242
|
type: 'uint64_t',
|
|
@@ -13140,6 +13297,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
13140
13297
|
name: 'update_rate',
|
|
13141
13298
|
type: 'uint16_t',
|
|
13142
13299
|
},
|
|
13300
|
+
{
|
|
13301
|
+
name: 'uas_id',
|
|
13302
|
+
type: 'uint8_t',
|
|
13303
|
+
arrayLength: 18,
|
|
13304
|
+
},
|
|
13143
13305
|
{
|
|
13144
13306
|
name: 'flight_state',
|
|
13145
13307
|
type: 'uint8_t',
|
|
@@ -13151,14 +13313,36 @@ const MESSAGE_DEFINITIONS = [
|
|
|
13151
13313
|
]
|
|
13152
13314
|
},
|
|
13153
13315
|
{
|
|
13154
|
-
id:
|
|
13155
|
-
name: '
|
|
13316
|
+
id: 345,
|
|
13317
|
+
name: 'PARAM_ERROR',
|
|
13156
13318
|
fields: [
|
|
13157
13319
|
{
|
|
13158
|
-
name: '
|
|
13320
|
+
name: 'param_index',
|
|
13321
|
+
type: 'int16_t',
|
|
13322
|
+
},
|
|
13323
|
+
{
|
|
13324
|
+
name: 'target_system',
|
|
13325
|
+
type: 'uint8_t',
|
|
13326
|
+
},
|
|
13327
|
+
{
|
|
13328
|
+
name: 'target_component',
|
|
13329
|
+
type: 'uint8_t',
|
|
13330
|
+
},
|
|
13331
|
+
{
|
|
13332
|
+
name: 'param_id',
|
|
13159
13333
|
type: 'char',
|
|
13160
|
-
arrayLength:
|
|
13334
|
+
arrayLength: 16,
|
|
13335
|
+
},
|
|
13336
|
+
{
|
|
13337
|
+
name: 'error',
|
|
13338
|
+
type: 'uint8_t',
|
|
13161
13339
|
},
|
|
13340
|
+
]
|
|
13341
|
+
},
|
|
13342
|
+
{
|
|
13343
|
+
id: 350,
|
|
13344
|
+
name: 'DEBUG_FLOAT_ARRAY',
|
|
13345
|
+
fields: [
|
|
13162
13346
|
{
|
|
13163
13347
|
name: 'time_usec',
|
|
13164
13348
|
type: 'uint64_t',
|
|
@@ -13167,6 +13351,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
13167
13351
|
name: 'array_id',
|
|
13168
13352
|
type: 'uint16_t',
|
|
13169
13353
|
},
|
|
13354
|
+
{
|
|
13355
|
+
name: 'name',
|
|
13356
|
+
type: 'char',
|
|
13357
|
+
arrayLength: 10,
|
|
13358
|
+
},
|
|
13170
13359
|
{
|
|
13171
13360
|
name: 'data',
|
|
13172
13361
|
type: 'float',
|
|
@@ -13209,16 +13398,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
13209
13398
|
id: 370,
|
|
13210
13399
|
name: 'SMART_BATTERY_INFO',
|
|
13211
13400
|
fields: [
|
|
13212
|
-
{
|
|
13213
|
-
name: 'device_name',
|
|
13214
|
-
type: 'char',
|
|
13215
|
-
arrayLength: 50,
|
|
13216
|
-
},
|
|
13217
|
-
{
|
|
13218
|
-
name: 'serial_number',
|
|
13219
|
-
type: 'char',
|
|
13220
|
-
arrayLength: 16,
|
|
13221
|
-
},
|
|
13222
13401
|
{
|
|
13223
13402
|
name: 'capacity_full_specification',
|
|
13224
13403
|
type: 'int32_t',
|
|
@@ -13259,6 +13438,16 @@ const MESSAGE_DEFINITIONS = [
|
|
|
13259
13438
|
name: 'type',
|
|
13260
13439
|
type: 'uint8_t',
|
|
13261
13440
|
},
|
|
13441
|
+
{
|
|
13442
|
+
name: 'serial_number',
|
|
13443
|
+
type: 'char',
|
|
13444
|
+
arrayLength: 16,
|
|
13445
|
+
},
|
|
13446
|
+
{
|
|
13447
|
+
name: 'device_name',
|
|
13448
|
+
type: 'char',
|
|
13449
|
+
arrayLength: 50,
|
|
13450
|
+
},
|
|
13262
13451
|
{
|
|
13263
13452
|
name: 'charging_maximum_voltage',
|
|
13264
13453
|
type: 'uint16_t',
|
|
@@ -13287,6 +13476,44 @@ const MESSAGE_DEFINITIONS = [
|
|
|
13287
13476
|
},
|
|
13288
13477
|
]
|
|
13289
13478
|
},
|
|
13479
|
+
{
|
|
13480
|
+
id: 361,
|
|
13481
|
+
name: 'FIGURE_EIGHT_EXECUTION_STATUS',
|
|
13482
|
+
fields: [
|
|
13483
|
+
{
|
|
13484
|
+
name: 'time_usec',
|
|
13485
|
+
type: 'uint64_t',
|
|
13486
|
+
},
|
|
13487
|
+
{
|
|
13488
|
+
name: 'major_radius',
|
|
13489
|
+
type: 'float',
|
|
13490
|
+
},
|
|
13491
|
+
{
|
|
13492
|
+
name: 'minor_radius',
|
|
13493
|
+
type: 'float',
|
|
13494
|
+
},
|
|
13495
|
+
{
|
|
13496
|
+
name: 'orientation',
|
|
13497
|
+
type: 'float',
|
|
13498
|
+
},
|
|
13499
|
+
{
|
|
13500
|
+
name: 'x',
|
|
13501
|
+
type: 'int32_t',
|
|
13502
|
+
},
|
|
13503
|
+
{
|
|
13504
|
+
name: 'y',
|
|
13505
|
+
type: 'int32_t',
|
|
13506
|
+
},
|
|
13507
|
+
{
|
|
13508
|
+
name: 'z',
|
|
13509
|
+
type: 'float',
|
|
13510
|
+
},
|
|
13511
|
+
{
|
|
13512
|
+
name: 'frame',
|
|
13513
|
+
type: 'uint8_t',
|
|
13514
|
+
},
|
|
13515
|
+
]
|
|
13516
|
+
},
|
|
13290
13517
|
{
|
|
13291
13518
|
id: 371,
|
|
13292
13519
|
name: 'FUEL_STATUS',
|
|
@@ -13329,21 +13556,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
13329
13556
|
id: 372,
|
|
13330
13557
|
name: 'BATTERY_INFO',
|
|
13331
13558
|
fields: [
|
|
13332
|
-
{
|
|
13333
|
-
name: 'name',
|
|
13334
|
-
type: 'char',
|
|
13335
|
-
arrayLength: 50,
|
|
13336
|
-
},
|
|
13337
|
-
{
|
|
13338
|
-
name: 'serial_number',
|
|
13339
|
-
type: 'char',
|
|
13340
|
-
arrayLength: 32,
|
|
13341
|
-
},
|
|
13342
|
-
{
|
|
13343
|
-
name: 'manufacture_date',
|
|
13344
|
-
type: 'char',
|
|
13345
|
-
arrayLength: 9,
|
|
13346
|
-
},
|
|
13347
13559
|
{
|
|
13348
13560
|
name: 'discharge_minimum_voltage',
|
|
13349
13561
|
type: 'float',
|
|
@@ -13412,6 +13624,21 @@ const MESSAGE_DEFINITIONS = [
|
|
|
13412
13624
|
name: 'cells_in_series',
|
|
13413
13625
|
type: 'uint8_t',
|
|
13414
13626
|
},
|
|
13627
|
+
{
|
|
13628
|
+
name: 'manufacture_date',
|
|
13629
|
+
type: 'char',
|
|
13630
|
+
arrayLength: 9,
|
|
13631
|
+
},
|
|
13632
|
+
{
|
|
13633
|
+
name: 'serial_number',
|
|
13634
|
+
type: 'char',
|
|
13635
|
+
arrayLength: 32,
|
|
13636
|
+
},
|
|
13637
|
+
{
|
|
13638
|
+
name: 'name',
|
|
13639
|
+
type: 'char',
|
|
13640
|
+
arrayLength: 50,
|
|
13641
|
+
},
|
|
13415
13642
|
]
|
|
13416
13643
|
},
|
|
13417
13644
|
{
|
|
@@ -13468,11 +13695,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
13468
13695
|
id: 375,
|
|
13469
13696
|
name: 'ACTUATOR_OUTPUT_STATUS',
|
|
13470
13697
|
fields: [
|
|
13471
|
-
{
|
|
13472
|
-
name: 'actuator',
|
|
13473
|
-
type: 'float',
|
|
13474
|
-
arrayLength: 32,
|
|
13475
|
-
},
|
|
13476
13698
|
{
|
|
13477
13699
|
name: 'time_usec',
|
|
13478
13700
|
type: 'uint64_t',
|
|
@@ -13481,6 +13703,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
13481
13703
|
name: 'active',
|
|
13482
13704
|
type: 'uint32_t',
|
|
13483
13705
|
},
|
|
13706
|
+
{
|
|
13707
|
+
name: 'actuator',
|
|
13708
|
+
type: 'float',
|
|
13709
|
+
arrayLength: 32,
|
|
13710
|
+
},
|
|
13484
13711
|
]
|
|
13485
13712
|
},
|
|
13486
13713
|
{
|
|
@@ -13513,11 +13740,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
13513
13740
|
id: 385,
|
|
13514
13741
|
name: 'TUNNEL',
|
|
13515
13742
|
fields: [
|
|
13516
|
-
{
|
|
13517
|
-
name: 'payload',
|
|
13518
|
-
type: 'uint8_t',
|
|
13519
|
-
arrayLength: 128,
|
|
13520
|
-
},
|
|
13521
13743
|
{
|
|
13522
13744
|
name: 'payload_type',
|
|
13523
13745
|
type: 'uint16_t',
|
|
@@ -13534,17 +13756,17 @@ const MESSAGE_DEFINITIONS = [
|
|
|
13534
13756
|
name: 'payload_length',
|
|
13535
13757
|
type: 'uint8_t',
|
|
13536
13758
|
},
|
|
13759
|
+
{
|
|
13760
|
+
name: 'payload',
|
|
13761
|
+
type: 'uint8_t',
|
|
13762
|
+
arrayLength: 128,
|
|
13763
|
+
},
|
|
13537
13764
|
]
|
|
13538
13765
|
},
|
|
13539
13766
|
{
|
|
13540
13767
|
id: 386,
|
|
13541
13768
|
name: 'CAN_FRAME',
|
|
13542
13769
|
fields: [
|
|
13543
|
-
{
|
|
13544
|
-
name: 'data',
|
|
13545
|
-
type: 'uint8_t',
|
|
13546
|
-
arrayLength: 8,
|
|
13547
|
-
},
|
|
13548
13770
|
{
|
|
13549
13771
|
name: 'id',
|
|
13550
13772
|
type: 'uint32_t',
|
|
@@ -13565,6 +13787,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
13565
13787
|
name: 'len',
|
|
13566
13788
|
type: 'uint8_t',
|
|
13567
13789
|
},
|
|
13790
|
+
{
|
|
13791
|
+
name: 'data',
|
|
13792
|
+
type: 'uint8_t',
|
|
13793
|
+
arrayLength: 8,
|
|
13794
|
+
},
|
|
13568
13795
|
]
|
|
13569
13796
|
},
|
|
13570
13797
|
{
|
|
@@ -13572,29 +13799,20 @@ const MESSAGE_DEFINITIONS = [
|
|
|
13572
13799
|
name: 'ONBOARD_COMPUTER_STATUS',
|
|
13573
13800
|
fields: [
|
|
13574
13801
|
{
|
|
13575
|
-
name: '
|
|
13576
|
-
type: '
|
|
13577
|
-
arrayLength: 6,
|
|
13802
|
+
name: 'time_usec',
|
|
13803
|
+
type: 'uint64_t',
|
|
13578
13804
|
},
|
|
13579
13805
|
{
|
|
13580
|
-
name: '
|
|
13806
|
+
name: 'uptime',
|
|
13581
13807
|
type: 'uint32_t',
|
|
13582
|
-
arrayLength: 6,
|
|
13583
13808
|
},
|
|
13584
13809
|
{
|
|
13585
|
-
name: '
|
|
13810
|
+
name: 'ram_usage',
|
|
13586
13811
|
type: 'uint32_t',
|
|
13587
|
-
arrayLength: 6,
|
|
13588
13812
|
},
|
|
13589
13813
|
{
|
|
13590
|
-
name: '
|
|
13814
|
+
name: 'ram_total',
|
|
13591
13815
|
type: 'uint32_t',
|
|
13592
|
-
arrayLength: 6,
|
|
13593
|
-
},
|
|
13594
|
-
{
|
|
13595
|
-
name: 'link_rx_max',
|
|
13596
|
-
type: 'uint32_t',
|
|
13597
|
-
arrayLength: 6,
|
|
13598
13816
|
},
|
|
13599
13817
|
{
|
|
13600
13818
|
name: 'storage_type',
|
|
@@ -13612,28 +13830,29 @@ const MESSAGE_DEFINITIONS = [
|
|
|
13612
13830
|
arrayLength: 4,
|
|
13613
13831
|
},
|
|
13614
13832
|
{
|
|
13615
|
-
name: '
|
|
13616
|
-
type: '
|
|
13617
|
-
arrayLength:
|
|
13833
|
+
name: 'link_type',
|
|
13834
|
+
type: 'uint32_t',
|
|
13835
|
+
arrayLength: 6,
|
|
13618
13836
|
},
|
|
13619
13837
|
{
|
|
13620
|
-
name: '
|
|
13621
|
-
type: '
|
|
13622
|
-
arrayLength:
|
|
13838
|
+
name: 'link_tx_rate',
|
|
13839
|
+
type: 'uint32_t',
|
|
13840
|
+
arrayLength: 6,
|
|
13623
13841
|
},
|
|
13624
13842
|
{
|
|
13625
|
-
name: '
|
|
13626
|
-
type: '
|
|
13843
|
+
name: 'link_rx_rate',
|
|
13844
|
+
type: 'uint32_t',
|
|
13845
|
+
arrayLength: 6,
|
|
13627
13846
|
},
|
|
13628
13847
|
{
|
|
13629
|
-
name: '
|
|
13630
|
-
type: '
|
|
13631
|
-
arrayLength:
|
|
13848
|
+
name: 'link_tx_max',
|
|
13849
|
+
type: 'uint32_t',
|
|
13850
|
+
arrayLength: 6,
|
|
13632
13851
|
},
|
|
13633
13852
|
{
|
|
13634
|
-
name: '
|
|
13635
|
-
type: '
|
|
13636
|
-
arrayLength:
|
|
13853
|
+
name: 'link_rx_max',
|
|
13854
|
+
type: 'uint32_t',
|
|
13855
|
+
arrayLength: 6,
|
|
13637
13856
|
},
|
|
13638
13857
|
{
|
|
13639
13858
|
name: 'fan_speed',
|
|
@@ -13641,46 +13860,49 @@ const MESSAGE_DEFINITIONS = [
|
|
|
13641
13860
|
arrayLength: 4,
|
|
13642
13861
|
},
|
|
13643
13862
|
{
|
|
13644
|
-
name: '
|
|
13645
|
-
type: '
|
|
13863
|
+
name: 'type',
|
|
13864
|
+
type: 'uint8_t',
|
|
13646
13865
|
},
|
|
13647
13866
|
{
|
|
13648
|
-
name: '
|
|
13867
|
+
name: 'cpu_cores',
|
|
13649
13868
|
type: 'uint8_t',
|
|
13650
|
-
arrayLength:
|
|
13869
|
+
arrayLength: 8,
|
|
13651
13870
|
},
|
|
13652
13871
|
{
|
|
13653
|
-
name: '
|
|
13654
|
-
type: '
|
|
13872
|
+
name: 'cpu_combined',
|
|
13873
|
+
type: 'uint8_t',
|
|
13874
|
+
arrayLength: 10,
|
|
13655
13875
|
},
|
|
13656
13876
|
{
|
|
13657
|
-
name: '
|
|
13658
|
-
type: '
|
|
13877
|
+
name: 'gpu_cores',
|
|
13878
|
+
type: 'uint8_t',
|
|
13879
|
+
arrayLength: 4,
|
|
13659
13880
|
},
|
|
13660
13881
|
{
|
|
13661
|
-
name: '
|
|
13882
|
+
name: 'gpu_combined',
|
|
13662
13883
|
type: 'uint8_t',
|
|
13884
|
+
arrayLength: 10,
|
|
13663
13885
|
},
|
|
13664
13886
|
{
|
|
13665
13887
|
name: 'temperature_board',
|
|
13666
13888
|
type: 'int8_t',
|
|
13667
13889
|
},
|
|
13668
|
-
]
|
|
13669
|
-
},
|
|
13670
|
-
{
|
|
13671
|
-
id: 395,
|
|
13672
|
-
name: 'COMPONENT_INFORMATION',
|
|
13673
|
-
fields: [
|
|
13674
13890
|
{
|
|
13675
|
-
name: '
|
|
13676
|
-
type: '
|
|
13677
|
-
arrayLength:
|
|
13891
|
+
name: 'temperature_core',
|
|
13892
|
+
type: 'int8_t',
|
|
13893
|
+
arrayLength: 8,
|
|
13678
13894
|
},
|
|
13679
13895
|
{
|
|
13680
|
-
name: '
|
|
13681
|
-
type: '
|
|
13682
|
-
|
|
13896
|
+
name: 'status_flags',
|
|
13897
|
+
type: 'uint16_t',
|
|
13898
|
+
extension: true,
|
|
13683
13899
|
},
|
|
13900
|
+
]
|
|
13901
|
+
},
|
|
13902
|
+
{
|
|
13903
|
+
id: 395,
|
|
13904
|
+
name: 'COMPONENT_INFORMATION',
|
|
13905
|
+
fields: [
|
|
13684
13906
|
{
|
|
13685
13907
|
name: 'time_boot_ms',
|
|
13686
13908
|
type: 'uint32_t',
|
|
@@ -13693,6 +13915,16 @@ const MESSAGE_DEFINITIONS = [
|
|
|
13693
13915
|
name: 'peripherals_metadata_file_crc',
|
|
13694
13916
|
type: 'uint32_t',
|
|
13695
13917
|
},
|
|
13918
|
+
{
|
|
13919
|
+
name: 'general_metadata_uri',
|
|
13920
|
+
type: 'char',
|
|
13921
|
+
arrayLength: 100,
|
|
13922
|
+
},
|
|
13923
|
+
{
|
|
13924
|
+
name: 'peripherals_metadata_uri',
|
|
13925
|
+
type: 'char',
|
|
13926
|
+
arrayLength: 100,
|
|
13927
|
+
},
|
|
13696
13928
|
]
|
|
13697
13929
|
},
|
|
13698
13930
|
{
|
|
@@ -13700,17 +13932,24 @@ const MESSAGE_DEFINITIONS = [
|
|
|
13700
13932
|
name: 'COMPONENT_INFORMATION_BASIC',
|
|
13701
13933
|
fields: [
|
|
13702
13934
|
{
|
|
13703
|
-
name: '
|
|
13704
|
-
type: '
|
|
13705
|
-
arrayLength: 32,
|
|
13935
|
+
name: 'capabilities',
|
|
13936
|
+
type: 'uint64_t',
|
|
13706
13937
|
},
|
|
13707
13938
|
{
|
|
13708
|
-
name: '
|
|
13939
|
+
name: 'time_boot_ms',
|
|
13940
|
+
type: 'uint32_t',
|
|
13941
|
+
},
|
|
13942
|
+
{
|
|
13943
|
+
name: 'time_manufacture_s',
|
|
13944
|
+
type: 'uint32_t',
|
|
13945
|
+
},
|
|
13946
|
+
{
|
|
13947
|
+
name: 'vendor_name',
|
|
13709
13948
|
type: 'char',
|
|
13710
13949
|
arrayLength: 32,
|
|
13711
13950
|
},
|
|
13712
13951
|
{
|
|
13713
|
-
name: '
|
|
13952
|
+
name: 'model_name',
|
|
13714
13953
|
type: 'char',
|
|
13715
13954
|
arrayLength: 32,
|
|
13716
13955
|
},
|
|
@@ -13725,16 +13964,9 @@ const MESSAGE_DEFINITIONS = [
|
|
|
13725
13964
|
arrayLength: 24,
|
|
13726
13965
|
},
|
|
13727
13966
|
{
|
|
13728
|
-
name: '
|
|
13729
|
-
type: '
|
|
13730
|
-
|
|
13731
|
-
{
|
|
13732
|
-
name: 'time_boot_ms',
|
|
13733
|
-
type: 'uint32_t',
|
|
13734
|
-
},
|
|
13735
|
-
{
|
|
13736
|
-
name: 'time_manufacture_s',
|
|
13737
|
-
type: 'uint32_t',
|
|
13967
|
+
name: 'serial_number',
|
|
13968
|
+
type: 'char',
|
|
13969
|
+
arrayLength: 32,
|
|
13738
13970
|
},
|
|
13739
13971
|
]
|
|
13740
13972
|
},
|
|
@@ -13742,11 +13974,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
13742
13974
|
id: 397,
|
|
13743
13975
|
name: 'COMPONENT_METADATA',
|
|
13744
13976
|
fields: [
|
|
13745
|
-
{
|
|
13746
|
-
name: 'uri',
|
|
13747
|
-
type: 'char',
|
|
13748
|
-
arrayLength: 100,
|
|
13749
|
-
},
|
|
13750
13977
|
{
|
|
13751
13978
|
name: 'time_boot_ms',
|
|
13752
13979
|
type: 'uint32_t',
|
|
@@ -13755,17 +13982,17 @@ const MESSAGE_DEFINITIONS = [
|
|
|
13755
13982
|
name: 'file_crc',
|
|
13756
13983
|
type: 'uint32_t',
|
|
13757
13984
|
},
|
|
13985
|
+
{
|
|
13986
|
+
name: 'uri',
|
|
13987
|
+
type: 'char',
|
|
13988
|
+
arrayLength: 100,
|
|
13989
|
+
},
|
|
13758
13990
|
]
|
|
13759
13991
|
},
|
|
13760
13992
|
{
|
|
13761
13993
|
id: 400,
|
|
13762
13994
|
name: 'PLAY_TUNE_V2',
|
|
13763
13995
|
fields: [
|
|
13764
|
-
{
|
|
13765
|
-
name: 'tune',
|
|
13766
|
-
type: 'char',
|
|
13767
|
-
arrayLength: 248,
|
|
13768
|
-
},
|
|
13769
13996
|
{
|
|
13770
13997
|
name: 'format',
|
|
13771
13998
|
type: 'uint32_t',
|
|
@@ -13778,6 +14005,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
13778
14005
|
name: 'target_component',
|
|
13779
14006
|
type: 'uint8_t',
|
|
13780
14007
|
},
|
|
14008
|
+
{
|
|
14009
|
+
name: 'tune',
|
|
14010
|
+
type: 'char',
|
|
14011
|
+
arrayLength: 248,
|
|
14012
|
+
},
|
|
13781
14013
|
]
|
|
13782
14014
|
},
|
|
13783
14015
|
{
|
|
@@ -13802,11 +14034,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
13802
14034
|
id: 410,
|
|
13803
14035
|
name: 'EVENT',
|
|
13804
14036
|
fields: [
|
|
13805
|
-
{
|
|
13806
|
-
name: 'arguments',
|
|
13807
|
-
type: 'uint8_t',
|
|
13808
|
-
arrayLength: 40,
|
|
13809
|
-
},
|
|
13810
14037
|
{
|
|
13811
14038
|
name: 'id',
|
|
13812
14039
|
type: 'uint32_t',
|
|
@@ -13831,6 +14058,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
13831
14058
|
name: 'log_levels',
|
|
13832
14059
|
type: 'uint8_t',
|
|
13833
14060
|
},
|
|
14061
|
+
{
|
|
14062
|
+
name: 'arguments',
|
|
14063
|
+
type: 'uint8_t',
|
|
14064
|
+
arrayLength: 40,
|
|
14065
|
+
},
|
|
13834
14066
|
]
|
|
13835
14067
|
},
|
|
13836
14068
|
{
|
|
@@ -13899,11 +14131,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
13899
14131
|
id: 435,
|
|
13900
14132
|
name: 'AVAILABLE_MODES',
|
|
13901
14133
|
fields: [
|
|
13902
|
-
{
|
|
13903
|
-
name: 'mode_name',
|
|
13904
|
-
type: 'char',
|
|
13905
|
-
arrayLength: 35,
|
|
13906
|
-
},
|
|
13907
14134
|
{
|
|
13908
14135
|
name: 'custom_mode',
|
|
13909
14136
|
type: 'uint32_t',
|
|
@@ -13924,6 +14151,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
13924
14151
|
name: 'standard_mode',
|
|
13925
14152
|
type: 'uint8_t',
|
|
13926
14153
|
},
|
|
14154
|
+
{
|
|
14155
|
+
name: 'mode_name',
|
|
14156
|
+
type: 'char',
|
|
14157
|
+
arrayLength: 35,
|
|
14158
|
+
},
|
|
13927
14159
|
]
|
|
13928
14160
|
},
|
|
13929
14161
|
{
|
|
@@ -14008,11 +14240,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
14008
14240
|
id: 387,
|
|
14009
14241
|
name: 'CANFD_FRAME',
|
|
14010
14242
|
fields: [
|
|
14011
|
-
{
|
|
14012
|
-
name: 'data',
|
|
14013
|
-
type: 'uint8_t',
|
|
14014
|
-
arrayLength: 64,
|
|
14015
|
-
},
|
|
14016
14243
|
{
|
|
14017
14244
|
name: 'id',
|
|
14018
14245
|
type: 'uint32_t',
|
|
@@ -14033,6 +14260,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
14033
14260
|
name: 'len',
|
|
14034
14261
|
type: 'uint8_t',
|
|
14035
14262
|
},
|
|
14263
|
+
{
|
|
14264
|
+
name: 'data',
|
|
14265
|
+
type: 'uint8_t',
|
|
14266
|
+
arrayLength: 64,
|
|
14267
|
+
},
|
|
14036
14268
|
]
|
|
14037
14269
|
},
|
|
14038
14270
|
{
|
|
@@ -14070,15 +14302,15 @@ const MESSAGE_DEFINITIONS = [
|
|
|
14070
14302
|
id: 9000,
|
|
14071
14303
|
name: 'WHEEL_DISTANCE',
|
|
14072
14304
|
fields: [
|
|
14305
|
+
{
|
|
14306
|
+
name: 'time_usec',
|
|
14307
|
+
type: 'uint64_t',
|
|
14308
|
+
},
|
|
14073
14309
|
{
|
|
14074
14310
|
name: 'distance',
|
|
14075
14311
|
type: 'double',
|
|
14076
14312
|
arrayLength: 16,
|
|
14077
14313
|
},
|
|
14078
|
-
{
|
|
14079
|
-
name: 'time_usec',
|
|
14080
|
-
type: 'uint64_t',
|
|
14081
|
-
},
|
|
14082
14314
|
{
|
|
14083
14315
|
name: 'count',
|
|
14084
14316
|
type: 'uint8_t',
|
|
@@ -14128,30 +14360,30 @@ const MESSAGE_DEFINITIONS = [
|
|
|
14128
14360
|
name: 'OPEN_DRONE_ID_BASIC_ID',
|
|
14129
14361
|
fields: [
|
|
14130
14362
|
{
|
|
14131
|
-
name: '
|
|
14363
|
+
name: 'target_system',
|
|
14132
14364
|
type: 'uint8_t',
|
|
14133
|
-
arrayLength: 20,
|
|
14134
14365
|
},
|
|
14135
14366
|
{
|
|
14136
|
-
name: '
|
|
14367
|
+
name: 'target_component',
|
|
14137
14368
|
type: 'uint8_t',
|
|
14138
|
-
arrayLength: 20,
|
|
14139
14369
|
},
|
|
14140
14370
|
{
|
|
14141
|
-
name: '
|
|
14371
|
+
name: 'id_or_mac',
|
|
14142
14372
|
type: 'uint8_t',
|
|
14373
|
+
arrayLength: 20,
|
|
14143
14374
|
},
|
|
14144
14375
|
{
|
|
14145
|
-
name: '
|
|
14376
|
+
name: 'id_type',
|
|
14146
14377
|
type: 'uint8_t',
|
|
14147
14378
|
},
|
|
14148
14379
|
{
|
|
14149
|
-
name: '
|
|
14380
|
+
name: 'ua_type',
|
|
14150
14381
|
type: 'uint8_t',
|
|
14151
14382
|
},
|
|
14152
14383
|
{
|
|
14153
|
-
name: '
|
|
14384
|
+
name: 'uas_id',
|
|
14154
14385
|
type: 'uint8_t',
|
|
14386
|
+
arrayLength: 20,
|
|
14155
14387
|
},
|
|
14156
14388
|
]
|
|
14157
14389
|
},
|
|
@@ -14159,11 +14391,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
14159
14391
|
id: 12901,
|
|
14160
14392
|
name: 'OPEN_DRONE_ID_LOCATION',
|
|
14161
14393
|
fields: [
|
|
14162
|
-
{
|
|
14163
|
-
name: 'id_or_mac',
|
|
14164
|
-
type: 'uint8_t',
|
|
14165
|
-
arrayLength: 20,
|
|
14166
|
-
},
|
|
14167
14394
|
{
|
|
14168
14395
|
name: 'latitude',
|
|
14169
14396
|
type: 'int32_t',
|
|
@@ -14208,6 +14435,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
14208
14435
|
name: 'target_component',
|
|
14209
14436
|
type: 'uint8_t',
|
|
14210
14437
|
},
|
|
14438
|
+
{
|
|
14439
|
+
name: 'id_or_mac',
|
|
14440
|
+
type: 'uint8_t',
|
|
14441
|
+
arrayLength: 20,
|
|
14442
|
+
},
|
|
14211
14443
|
{
|
|
14212
14444
|
name: 'status',
|
|
14213
14445
|
type: 'uint8_t',
|
|
@@ -14242,16 +14474,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
14242
14474
|
id: 12902,
|
|
14243
14475
|
name: 'OPEN_DRONE_ID_AUTHENTICATION',
|
|
14244
14476
|
fields: [
|
|
14245
|
-
{
|
|
14246
|
-
name: 'authentication_data',
|
|
14247
|
-
type: 'uint8_t',
|
|
14248
|
-
arrayLength: 23,
|
|
14249
|
-
},
|
|
14250
|
-
{
|
|
14251
|
-
name: 'id_or_mac',
|
|
14252
|
-
type: 'uint8_t',
|
|
14253
|
-
arrayLength: 20,
|
|
14254
|
-
},
|
|
14255
14477
|
{
|
|
14256
14478
|
name: 'timestamp',
|
|
14257
14479
|
type: 'uint32_t',
|
|
@@ -14264,6 +14486,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
14264
14486
|
name: 'target_component',
|
|
14265
14487
|
type: 'uint8_t',
|
|
14266
14488
|
},
|
|
14489
|
+
{
|
|
14490
|
+
name: 'id_or_mac',
|
|
14491
|
+
type: 'uint8_t',
|
|
14492
|
+
arrayLength: 20,
|
|
14493
|
+
},
|
|
14267
14494
|
{
|
|
14268
14495
|
name: 'authentication_type',
|
|
14269
14496
|
type: 'uint8_t',
|
|
@@ -14280,6 +14507,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
14280
14507
|
name: 'length',
|
|
14281
14508
|
type: 'uint8_t',
|
|
14282
14509
|
},
|
|
14510
|
+
{
|
|
14511
|
+
name: 'authentication_data',
|
|
14512
|
+
type: 'uint8_t',
|
|
14513
|
+
arrayLength: 23,
|
|
14514
|
+
},
|
|
14283
14515
|
]
|
|
14284
14516
|
},
|
|
14285
14517
|
{
|
|
@@ -14287,38 +14519,33 @@ const MESSAGE_DEFINITIONS = [
|
|
|
14287
14519
|
name: 'OPEN_DRONE_ID_SELF_ID',
|
|
14288
14520
|
fields: [
|
|
14289
14521
|
{
|
|
14290
|
-
name: '
|
|
14291
|
-
type: 'char',
|
|
14292
|
-
arrayLength: 23,
|
|
14293
|
-
},
|
|
14294
|
-
{
|
|
14295
|
-
name: 'id_or_mac',
|
|
14522
|
+
name: 'target_system',
|
|
14296
14523
|
type: 'uint8_t',
|
|
14297
|
-
arrayLength: 20,
|
|
14298
14524
|
},
|
|
14299
14525
|
{
|
|
14300
|
-
name: '
|
|
14526
|
+
name: 'target_component',
|
|
14301
14527
|
type: 'uint8_t',
|
|
14302
14528
|
},
|
|
14303
14529
|
{
|
|
14304
|
-
name: '
|
|
14530
|
+
name: 'id_or_mac',
|
|
14305
14531
|
type: 'uint8_t',
|
|
14532
|
+
arrayLength: 20,
|
|
14306
14533
|
},
|
|
14307
14534
|
{
|
|
14308
14535
|
name: 'description_type',
|
|
14309
14536
|
type: 'uint8_t',
|
|
14310
14537
|
},
|
|
14538
|
+
{
|
|
14539
|
+
name: 'description',
|
|
14540
|
+
type: 'char',
|
|
14541
|
+
arrayLength: 23,
|
|
14542
|
+
},
|
|
14311
14543
|
]
|
|
14312
14544
|
},
|
|
14313
14545
|
{
|
|
14314
14546
|
id: 12904,
|
|
14315
14547
|
name: 'OPEN_DRONE_ID_SYSTEM',
|
|
14316
14548
|
fields: [
|
|
14317
|
-
{
|
|
14318
|
-
name: 'id_or_mac',
|
|
14319
|
-
type: 'uint8_t',
|
|
14320
|
-
arrayLength: 20,
|
|
14321
|
-
},
|
|
14322
14549
|
{
|
|
14323
14550
|
name: 'operator_latitude',
|
|
14324
14551
|
type: 'int32_t',
|
|
@@ -14359,6 +14586,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
14359
14586
|
name: 'target_component',
|
|
14360
14587
|
type: 'uint8_t',
|
|
14361
14588
|
},
|
|
14589
|
+
{
|
|
14590
|
+
name: 'id_or_mac',
|
|
14591
|
+
type: 'uint8_t',
|
|
14592
|
+
arrayLength: 20,
|
|
14593
|
+
},
|
|
14362
14594
|
{
|
|
14363
14595
|
name: 'operator_location_type',
|
|
14364
14596
|
type: 'uint8_t',
|
|
@@ -14382,27 +14614,27 @@ const MESSAGE_DEFINITIONS = [
|
|
|
14382
14614
|
name: 'OPEN_DRONE_ID_OPERATOR_ID',
|
|
14383
14615
|
fields: [
|
|
14384
14616
|
{
|
|
14385
|
-
name: '
|
|
14617
|
+
name: 'target_system',
|
|
14386
14618
|
type: 'uint8_t',
|
|
14387
|
-
arrayLength: 20,
|
|
14388
|
-
},
|
|
14389
|
-
{
|
|
14390
|
-
name: 'operator_id',
|
|
14391
|
-
type: 'char',
|
|
14392
|
-
arrayLength: 20,
|
|
14393
14619
|
},
|
|
14394
14620
|
{
|
|
14395
|
-
name: '
|
|
14621
|
+
name: 'target_component',
|
|
14396
14622
|
type: 'uint8_t',
|
|
14397
14623
|
},
|
|
14398
14624
|
{
|
|
14399
|
-
name: '
|
|
14625
|
+
name: 'id_or_mac',
|
|
14400
14626
|
type: 'uint8_t',
|
|
14627
|
+
arrayLength: 20,
|
|
14401
14628
|
},
|
|
14402
14629
|
{
|
|
14403
14630
|
name: 'operator_id_type',
|
|
14404
14631
|
type: 'uint8_t',
|
|
14405
14632
|
},
|
|
14633
|
+
{
|
|
14634
|
+
name: 'operator_id',
|
|
14635
|
+
type: 'char',
|
|
14636
|
+
arrayLength: 20,
|
|
14637
|
+
},
|
|
14406
14638
|
]
|
|
14407
14639
|
},
|
|
14408
14640
|
{
|
|
@@ -14410,30 +14642,30 @@ const MESSAGE_DEFINITIONS = [
|
|
|
14410
14642
|
name: 'OPEN_DRONE_ID_MESSAGE_PACK',
|
|
14411
14643
|
fields: [
|
|
14412
14644
|
{
|
|
14413
|
-
name: '
|
|
14645
|
+
name: 'target_system',
|
|
14414
14646
|
type: 'uint8_t',
|
|
14415
|
-
arrayLength: 225,
|
|
14416
14647
|
},
|
|
14417
14648
|
{
|
|
14418
|
-
name: '
|
|
14649
|
+
name: 'target_component',
|
|
14419
14650
|
type: 'uint8_t',
|
|
14420
|
-
arrayLength: 20,
|
|
14421
14651
|
},
|
|
14422
14652
|
{
|
|
14423
|
-
name: '
|
|
14653
|
+
name: 'id_or_mac',
|
|
14424
14654
|
type: 'uint8_t',
|
|
14655
|
+
arrayLength: 20,
|
|
14425
14656
|
},
|
|
14426
14657
|
{
|
|
14427
|
-
name: '
|
|
14658
|
+
name: 'single_message_size',
|
|
14428
14659
|
type: 'uint8_t',
|
|
14429
14660
|
},
|
|
14430
14661
|
{
|
|
14431
|
-
name: '
|
|
14662
|
+
name: 'msg_pack_size',
|
|
14432
14663
|
type: 'uint8_t',
|
|
14433
14664
|
},
|
|
14434
14665
|
{
|
|
14435
|
-
name: '
|
|
14666
|
+
name: 'messages',
|
|
14436
14667
|
type: 'uint8_t',
|
|
14668
|
+
arrayLength: 225,
|
|
14437
14669
|
},
|
|
14438
14670
|
]
|
|
14439
14671
|
},
|
|
@@ -14441,15 +14673,15 @@ const MESSAGE_DEFINITIONS = [
|
|
|
14441
14673
|
id: 12918,
|
|
14442
14674
|
name: 'OPEN_DRONE_ID_ARM_STATUS',
|
|
14443
14675
|
fields: [
|
|
14676
|
+
{
|
|
14677
|
+
name: 'status',
|
|
14678
|
+
type: 'uint8_t',
|
|
14679
|
+
},
|
|
14444
14680
|
{
|
|
14445
14681
|
name: 'error',
|
|
14446
14682
|
type: 'char',
|
|
14447
14683
|
arrayLength: 50,
|
|
14448
14684
|
},
|
|
14449
|
-
{
|
|
14450
|
-
name: 'status',
|
|
14451
|
-
type: 'uint8_t',
|
|
14452
|
-
},
|
|
14453
14685
|
]
|
|
14454
14686
|
},
|
|
14455
14687
|
{
|
|
@@ -14514,6 +14746,10 @@ const MESSAGE_DEFINITIONS = [
|
|
|
14514
14746
|
type: 'uint16_t',
|
|
14515
14747
|
arrayLength: 4,
|
|
14516
14748
|
},
|
|
14749
|
+
{
|
|
14750
|
+
name: 'v1',
|
|
14751
|
+
type: 'uint8_t',
|
|
14752
|
+
},
|
|
14517
14753
|
{
|
|
14518
14754
|
name: 'ar_i8',
|
|
14519
14755
|
type: 'int8_t',
|
|
@@ -14524,10 +14760,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
14524
14760
|
type: 'uint8_t',
|
|
14525
14761
|
arrayLength: 4,
|
|
14526
14762
|
},
|
|
14527
|
-
{
|
|
14528
|
-
name: 'v1',
|
|
14529
|
-
type: 'uint8_t',
|
|
14530
|
-
},
|
|
14531
14763
|
]
|
|
14532
14764
|
},
|
|
14533
14765
|
{
|
|
@@ -14591,16 +14823,15 @@ const MESSAGE_DEFINITIONS = [
|
|
|
14591
14823
|
id: 17156,
|
|
14592
14824
|
name: 'ARRAY_TEST_6',
|
|
14593
14825
|
fields: [
|
|
14594
|
-
{
|
|
14595
|
-
name: 'ar_c',
|
|
14596
|
-
type: 'char',
|
|
14597
|
-
arrayLength: 32,
|
|
14598
|
-
},
|
|
14599
14826
|
{
|
|
14600
14827
|
name: 'ar_d',
|
|
14601
14828
|
type: 'double',
|
|
14602
14829
|
arrayLength: 2,
|
|
14603
14830
|
},
|
|
14831
|
+
{
|
|
14832
|
+
name: 'v3',
|
|
14833
|
+
type: 'uint32_t',
|
|
14834
|
+
},
|
|
14604
14835
|
{
|
|
14605
14836
|
name: 'ar_u32',
|
|
14606
14837
|
type: 'uint32_t',
|
|
@@ -14617,8 +14848,8 @@ const MESSAGE_DEFINITIONS = [
|
|
|
14617
14848
|
arrayLength: 2,
|
|
14618
14849
|
},
|
|
14619
14850
|
{
|
|
14620
|
-
name: '
|
|
14621
|
-
type: '
|
|
14851
|
+
name: 'v2',
|
|
14852
|
+
type: 'uint16_t',
|
|
14622
14853
|
},
|
|
14623
14854
|
{
|
|
14624
14855
|
name: 'ar_u16',
|
|
@@ -14631,8 +14862,8 @@ const MESSAGE_DEFINITIONS = [
|
|
|
14631
14862
|
arrayLength: 2,
|
|
14632
14863
|
},
|
|
14633
14864
|
{
|
|
14634
|
-
name: '
|
|
14635
|
-
type: '
|
|
14865
|
+
name: 'v1',
|
|
14866
|
+
type: 'uint8_t',
|
|
14636
14867
|
},
|
|
14637
14868
|
{
|
|
14638
14869
|
name: 'ar_u8',
|
|
@@ -14645,8 +14876,9 @@ const MESSAGE_DEFINITIONS = [
|
|
|
14645
14876
|
arrayLength: 2,
|
|
14646
14877
|
},
|
|
14647
14878
|
{
|
|
14648
|
-
name: '
|
|
14649
|
-
type: '
|
|
14879
|
+
name: 'ar_c',
|
|
14880
|
+
type: 'char',
|
|
14881
|
+
arrayLength: 32,
|
|
14650
14882
|
},
|
|
14651
14883
|
]
|
|
14652
14884
|
},
|
|
@@ -14654,11 +14886,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
14654
14886
|
id: 17157,
|
|
14655
14887
|
name: 'ARRAY_TEST_7',
|
|
14656
14888
|
fields: [
|
|
14657
|
-
{
|
|
14658
|
-
name: 'ar_c',
|
|
14659
|
-
type: 'char',
|
|
14660
|
-
arrayLength: 32,
|
|
14661
|
-
},
|
|
14662
14889
|
{
|
|
14663
14890
|
name: 'ar_d',
|
|
14664
14891
|
type: 'double',
|
|
@@ -14699,6 +14926,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
14699
14926
|
type: 'int8_t',
|
|
14700
14927
|
arrayLength: 2,
|
|
14701
14928
|
},
|
|
14929
|
+
{
|
|
14930
|
+
name: 'ar_c',
|
|
14931
|
+
type: 'char',
|
|
14932
|
+
arrayLength: 32,
|
|
14933
|
+
},
|
|
14702
14934
|
]
|
|
14703
14935
|
},
|
|
14704
14936
|
{
|
|
@@ -14778,5 +15010,5 @@ class Pythonarray_testSerializer {
|
|
|
14778
15010
|
}
|
|
14779
15011
|
}
|
|
14780
15012
|
|
|
14781
|
-
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, 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, Pythonarray_testParser, Pythonarray_testSerializer, 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, isArrayTest0, isArrayTest1, isArrayTest3, isArrayTest4, isArrayTest5, isArrayTest6, isArrayTest7, isArrayTest8, 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 };
|
|
15013
|
+
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, 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, Pythonarray_testParser, Pythonarray_testSerializer, 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, isArrayTest0, isArrayTest1, isArrayTest3, isArrayTest4, isArrayTest5, isArrayTest6, isArrayTest7, isArrayTest8, 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 };
|
|
14782
15014
|
//# sourceMappingURL=index.js.map
|