@aircast-4g/mavlink 1.1.12 → 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 paparazzi 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
|
}
|
|
@@ -4342,7 +4431,8 @@ function isScriptCurrent(msg) {
|
|
|
4342
4431
|
// Embedded MAVLink CRC implementation
|
|
4343
4432
|
const CRC_EXTRA = {
|
|
4344
4433
|
0: 50,
|
|
4345
|
-
|
|
4434
|
+
33: 104,
|
|
4435
|
+
148: 106,
|
|
4346
4436
|
1: 124,
|
|
4347
4437
|
2: 137,
|
|
4348
4438
|
4: 237,
|
|
@@ -4364,7 +4454,6 @@ const CRC_EXTRA = {
|
|
|
4364
4454
|
30: 39,
|
|
4365
4455
|
31: 246,
|
|
4366
4456
|
32: 185,
|
|
4367
|
-
33: 104,
|
|
4368
4457
|
34: 237,
|
|
4369
4458
|
35: 244,
|
|
4370
4459
|
36: 222,
|
|
@@ -4459,7 +4548,6 @@ const CRC_EXTRA = {
|
|
|
4459
4548
|
144: 158,
|
|
4460
4549
|
146: 152,
|
|
4461
4550
|
147: 143,
|
|
4462
|
-
148: 106,
|
|
4463
4551
|
149: 49,
|
|
4464
4552
|
162: 0,
|
|
4465
4553
|
192: 0,
|
|
@@ -4514,7 +4602,9 @@ const CRC_EXTRA = {
|
|
|
4514
4602
|
288: 0,
|
|
4515
4603
|
290: 0,
|
|
4516
4604
|
291: 0,
|
|
4605
|
+
295: 0,
|
|
4517
4606
|
299: 0,
|
|
4607
|
+
300: 0,
|
|
4518
4608
|
301: 0,
|
|
4519
4609
|
310: 0,
|
|
4520
4610
|
311: 0,
|
|
@@ -4532,9 +4622,11 @@ const CRC_EXTRA = {
|
|
|
4532
4622
|
336: 0,
|
|
4533
4623
|
339: 0,
|
|
4534
4624
|
340: 0,
|
|
4625
|
+
345: 0,
|
|
4535
4626
|
350: 0,
|
|
4536
4627
|
360: 0,
|
|
4537
4628
|
370: 0,
|
|
4629
|
+
361: 0,
|
|
4538
4630
|
371: 0,
|
|
4539
4631
|
372: 0,
|
|
4540
4632
|
373: 0,
|
|
@@ -4737,7 +4829,11 @@ class DialectParser {
|
|
|
4737
4829
|
const result = {};
|
|
4738
4830
|
const view = new DataView(payload.buffer, payload.byteOffset, payload.byteLength);
|
|
4739
4831
|
let offset = 0;
|
|
4740
|
-
|
|
4832
|
+
// MAVLink v2 wire format: fields are sorted by type size (largest first)
|
|
4833
|
+
// Extension fields come after core fields and maintain their XML order
|
|
4834
|
+
// See: https://mavlink.io/en/guide/serialization.html#field_reordering
|
|
4835
|
+
const sortedFields = this.sortFieldsByWireOrder(fields);
|
|
4836
|
+
for (const field of sortedFields) {
|
|
4741
4837
|
if (offset >= payload.length) {
|
|
4742
4838
|
result[field.name] = this.getDefaultValue(field);
|
|
4743
4839
|
}
|
|
@@ -4749,6 +4845,43 @@ class DialectParser {
|
|
|
4749
4845
|
}
|
|
4750
4846
|
return result;
|
|
4751
4847
|
}
|
|
4848
|
+
// Sort fields by MAVLink v2 wire order: by type size descending, extensions last
|
|
4849
|
+
// Uses stable sort to preserve original order for same-size fields
|
|
4850
|
+
sortFieldsByWireOrder(fields) {
|
|
4851
|
+
// Separate core fields and extension fields
|
|
4852
|
+
const coreFields = [];
|
|
4853
|
+
const extensionFields = [];
|
|
4854
|
+
fields.forEach((field, index) => {
|
|
4855
|
+
if (field.extension) {
|
|
4856
|
+
extensionFields.push(field);
|
|
4857
|
+
}
|
|
4858
|
+
else {
|
|
4859
|
+
coreFields.push({ field, originalIndex: index });
|
|
4860
|
+
}
|
|
4861
|
+
});
|
|
4862
|
+
// Stable sort core fields by type size (descending)
|
|
4863
|
+
// Arrays are sorted by element type size, not total array size
|
|
4864
|
+
coreFields.sort((a, b) => {
|
|
4865
|
+
const sizeA = this.getFieldTypeSize(a.field);
|
|
4866
|
+
const sizeB = this.getFieldTypeSize(b.field);
|
|
4867
|
+
if (sizeB !== sizeA) {
|
|
4868
|
+
return sizeB - sizeA; // Descending order (largest first)
|
|
4869
|
+
}
|
|
4870
|
+
// Same size: maintain original XML order (stable sort)
|
|
4871
|
+
return a.originalIndex - b.originalIndex;
|
|
4872
|
+
});
|
|
4873
|
+
// Extension fields maintain their XML order and come after core fields
|
|
4874
|
+
return [...coreFields.map(c => c.field), ...extensionFields];
|
|
4875
|
+
}
|
|
4876
|
+
// Get the size of a single element of a field type (for wire order sorting)
|
|
4877
|
+
getFieldTypeSize(field) {
|
|
4878
|
+
let baseType = field.type;
|
|
4879
|
+
// Strip array notation to get base type (arrays sort by element type, not total size)
|
|
4880
|
+
if (baseType.includes('[') && baseType.includes(']')) {
|
|
4881
|
+
baseType = baseType.substring(0, baseType.indexOf('['));
|
|
4882
|
+
}
|
|
4883
|
+
return this.getSingleFieldSize(baseType);
|
|
4884
|
+
}
|
|
4752
4885
|
getDefaultValue(field) {
|
|
4753
4886
|
const isArray = field.arrayLength !== undefined && field.arrayLength > 1;
|
|
4754
4887
|
if (isArray) {
|
|
@@ -4955,15 +5088,19 @@ class DialectParser {
|
|
|
4955
5088
|
}
|
|
4956
5089
|
}
|
|
4957
5090
|
serializePayload(message, fields) {
|
|
5091
|
+
// MAVLink v2 wire format: fields must be sorted by type size (largest first)
|
|
5092
|
+
// Extension fields come after core fields and maintain their XML order
|
|
5093
|
+
// See: https://mavlink.io/en/guide/serialization.html#field_reordering
|
|
5094
|
+
const sortedFields = this.sortFieldsByWireOrder(fields);
|
|
4958
5095
|
// Calculate total payload size
|
|
4959
5096
|
let totalSize = 0;
|
|
4960
|
-
for (const field of
|
|
5097
|
+
for (const field of sortedFields) {
|
|
4961
5098
|
totalSize += this.getFieldSize(field);
|
|
4962
5099
|
}
|
|
4963
5100
|
const buffer = new ArrayBuffer(totalSize);
|
|
4964
5101
|
const view = new DataView(buffer);
|
|
4965
5102
|
let offset = 0;
|
|
4966
|
-
for (const field of
|
|
5103
|
+
for (const field of sortedFields) {
|
|
4967
5104
|
const value = message[field.name];
|
|
4968
5105
|
const bytesWritten = this.serializeField(view, offset, field, value);
|
|
4969
5106
|
offset += bytesWritten;
|
|
@@ -4975,8 +5112,7 @@ class DialectParser {
|
|
|
4975
5112
|
let corePayloadSize = 0;
|
|
4976
5113
|
let extensionStartOffset = 0;
|
|
4977
5114
|
let hasExtensions = false;
|
|
4978
|
-
|
|
4979
|
-
for (const field of fields) {
|
|
5115
|
+
for (const field of sortedFields) {
|
|
4980
5116
|
const fieldSize = this.getFieldSize(field);
|
|
4981
5117
|
// Check if this is an extension field using proper XML-based detection
|
|
4982
5118
|
const isExtensionField = field.extension === true;
|
|
@@ -5267,31 +5403,104 @@ const MESSAGE_DEFINITIONS = [
|
|
|
5267
5403
|
]
|
|
5268
5404
|
},
|
|
5269
5405
|
{
|
|
5270
|
-
id:
|
|
5271
|
-
name: '
|
|
5406
|
+
id: 33,
|
|
5407
|
+
name: 'GLOBAL_POSITION_INT',
|
|
5272
5408
|
fields: [
|
|
5273
5409
|
{
|
|
5274
|
-
name: '
|
|
5275
|
-
type: '
|
|
5276
|
-
arrayLength: 8,
|
|
5410
|
+
name: 'time_boot_ms',
|
|
5411
|
+
type: 'uint32_t',
|
|
5277
5412
|
},
|
|
5278
5413
|
{
|
|
5279
|
-
name: '
|
|
5280
|
-
type: '
|
|
5281
|
-
arrayLength: 8,
|
|
5414
|
+
name: 'lat',
|
|
5415
|
+
type: 'int32_t',
|
|
5282
5416
|
},
|
|
5283
5417
|
{
|
|
5284
|
-
name: '
|
|
5418
|
+
name: 'lon',
|
|
5419
|
+
type: 'int32_t',
|
|
5420
|
+
},
|
|
5421
|
+
{
|
|
5422
|
+
name: 'alt',
|
|
5423
|
+
type: 'int32_t',
|
|
5424
|
+
},
|
|
5425
|
+
{
|
|
5426
|
+
name: 'relative_alt',
|
|
5427
|
+
type: 'int32_t',
|
|
5428
|
+
},
|
|
5429
|
+
{
|
|
5430
|
+
name: 'vx',
|
|
5431
|
+
type: 'int16_t',
|
|
5432
|
+
},
|
|
5433
|
+
{
|
|
5434
|
+
name: 'vy',
|
|
5435
|
+
type: 'int16_t',
|
|
5436
|
+
},
|
|
5437
|
+
{
|
|
5438
|
+
name: 'vz',
|
|
5439
|
+
type: 'int16_t',
|
|
5440
|
+
},
|
|
5441
|
+
{
|
|
5442
|
+
name: 'hdg',
|
|
5285
5443
|
type: 'uint16_t',
|
|
5286
5444
|
},
|
|
5445
|
+
]
|
|
5446
|
+
},
|
|
5447
|
+
{
|
|
5448
|
+
id: 148,
|
|
5449
|
+
name: 'AUTOPILOT_VERSION',
|
|
5450
|
+
fields: [
|
|
5451
|
+
{
|
|
5452
|
+
name: 'capabilities',
|
|
5453
|
+
type: 'uint64_t',
|
|
5454
|
+
},
|
|
5287
5455
|
{
|
|
5288
|
-
name: '
|
|
5456
|
+
name: 'uid',
|
|
5457
|
+
type: 'uint64_t',
|
|
5458
|
+
},
|
|
5459
|
+
{
|
|
5460
|
+
name: 'flight_sw_version',
|
|
5461
|
+
type: 'uint32_t',
|
|
5462
|
+
},
|
|
5463
|
+
{
|
|
5464
|
+
name: 'middleware_sw_version',
|
|
5465
|
+
type: 'uint32_t',
|
|
5466
|
+
},
|
|
5467
|
+
{
|
|
5468
|
+
name: 'os_sw_version',
|
|
5469
|
+
type: 'uint32_t',
|
|
5470
|
+
},
|
|
5471
|
+
{
|
|
5472
|
+
name: 'board_version',
|
|
5473
|
+
type: 'uint32_t',
|
|
5474
|
+
},
|
|
5475
|
+
{
|
|
5476
|
+
name: 'vendor_id',
|
|
5289
5477
|
type: 'uint16_t',
|
|
5290
5478
|
},
|
|
5291
5479
|
{
|
|
5292
|
-
name: '
|
|
5480
|
+
name: 'product_id',
|
|
5293
5481
|
type: 'uint16_t',
|
|
5294
5482
|
},
|
|
5483
|
+
{
|
|
5484
|
+
name: 'flight_custom_version',
|
|
5485
|
+
type: 'uint8_t',
|
|
5486
|
+
arrayLength: 8,
|
|
5487
|
+
},
|
|
5488
|
+
{
|
|
5489
|
+
name: 'middleware_custom_version',
|
|
5490
|
+
type: 'uint8_t',
|
|
5491
|
+
arrayLength: 8,
|
|
5492
|
+
},
|
|
5493
|
+
{
|
|
5494
|
+
name: 'os_custom_version',
|
|
5495
|
+
type: 'uint8_t',
|
|
5496
|
+
arrayLength: 8,
|
|
5497
|
+
},
|
|
5498
|
+
{
|
|
5499
|
+
name: 'uid2',
|
|
5500
|
+
type: 'uint8_t',
|
|
5501
|
+
arrayLength: 18,
|
|
5502
|
+
extension: true,
|
|
5503
|
+
},
|
|
5295
5504
|
]
|
|
5296
5505
|
},
|
|
5297
5506
|
{
|
|
@@ -5407,11 +5616,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
5407
5616
|
id: 5,
|
|
5408
5617
|
name: 'CHANGE_OPERATOR_CONTROL',
|
|
5409
5618
|
fields: [
|
|
5410
|
-
{
|
|
5411
|
-
name: 'passkey',
|
|
5412
|
-
type: 'char',
|
|
5413
|
-
arrayLength: 25,
|
|
5414
|
-
},
|
|
5415
5619
|
{
|
|
5416
5620
|
name: 'target_system',
|
|
5417
5621
|
type: 'uint8_t',
|
|
@@ -5424,6 +5628,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
5424
5628
|
name: 'version',
|
|
5425
5629
|
type: 'uint8_t',
|
|
5426
5630
|
},
|
|
5631
|
+
{
|
|
5632
|
+
name: 'passkey',
|
|
5633
|
+
type: 'char',
|
|
5634
|
+
arrayLength: 25,
|
|
5635
|
+
},
|
|
5427
5636
|
]
|
|
5428
5637
|
},
|
|
5429
5638
|
{
|
|
@@ -5527,11 +5736,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
5527
5736
|
id: 20,
|
|
5528
5737
|
name: 'PARAM_REQUEST_READ',
|
|
5529
5738
|
fields: [
|
|
5530
|
-
{
|
|
5531
|
-
name: 'param_id',
|
|
5532
|
-
type: 'char',
|
|
5533
|
-
arrayLength: 16,
|
|
5534
|
-
},
|
|
5535
5739
|
{
|
|
5536
5740
|
name: 'param_index',
|
|
5537
5741
|
type: 'int16_t',
|
|
@@ -5544,6 +5748,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
5544
5748
|
name: 'target_component',
|
|
5545
5749
|
type: 'uint8_t',
|
|
5546
5750
|
},
|
|
5751
|
+
{
|
|
5752
|
+
name: 'param_id',
|
|
5753
|
+
type: 'char',
|
|
5754
|
+
arrayLength: 16,
|
|
5755
|
+
},
|
|
5547
5756
|
]
|
|
5548
5757
|
},
|
|
5549
5758
|
{
|
|
@@ -5564,11 +5773,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
5564
5773
|
id: 22,
|
|
5565
5774
|
name: 'PARAM_VALUE',
|
|
5566
5775
|
fields: [
|
|
5567
|
-
{
|
|
5568
|
-
name: 'param_id',
|
|
5569
|
-
type: 'char',
|
|
5570
|
-
arrayLength: 16,
|
|
5571
|
-
},
|
|
5572
5776
|
{
|
|
5573
5777
|
name: 'param_value',
|
|
5574
5778
|
type: 'float',
|
|
@@ -5581,6 +5785,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
5581
5785
|
name: 'param_index',
|
|
5582
5786
|
type: 'uint16_t',
|
|
5583
5787
|
},
|
|
5788
|
+
{
|
|
5789
|
+
name: 'param_id',
|
|
5790
|
+
type: 'char',
|
|
5791
|
+
arrayLength: 16,
|
|
5792
|
+
},
|
|
5584
5793
|
{
|
|
5585
5794
|
name: 'param_type',
|
|
5586
5795
|
type: 'uint8_t',
|
|
@@ -5591,11 +5800,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
5591
5800
|
id: 23,
|
|
5592
5801
|
name: 'PARAM_SET',
|
|
5593
5802
|
fields: [
|
|
5594
|
-
{
|
|
5595
|
-
name: 'param_id',
|
|
5596
|
-
type: 'char',
|
|
5597
|
-
arrayLength: 16,
|
|
5598
|
-
},
|
|
5599
5803
|
{
|
|
5600
5804
|
name: 'param_value',
|
|
5601
5805
|
type: 'float',
|
|
@@ -5608,6 +5812,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
5608
5812
|
name: 'target_component',
|
|
5609
5813
|
type: 'uint8_t',
|
|
5610
5814
|
},
|
|
5815
|
+
{
|
|
5816
|
+
name: 'param_id',
|
|
5817
|
+
type: 'char',
|
|
5818
|
+
arrayLength: 16,
|
|
5819
|
+
},
|
|
5611
5820
|
{
|
|
5612
5821
|
name: 'param_type',
|
|
5613
5822
|
type: 'uint8_t',
|
|
@@ -5694,6 +5903,10 @@ const MESSAGE_DEFINITIONS = [
|
|
|
5694
5903
|
id: 25,
|
|
5695
5904
|
name: 'GPS_STATUS',
|
|
5696
5905
|
fields: [
|
|
5906
|
+
{
|
|
5907
|
+
name: 'satellites_visible',
|
|
5908
|
+
type: 'uint8_t',
|
|
5909
|
+
},
|
|
5697
5910
|
{
|
|
5698
5911
|
name: 'satellite_prn',
|
|
5699
5912
|
type: 'uint8_t',
|
|
@@ -5719,10 +5932,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
5719
5932
|
type: 'uint8_t',
|
|
5720
5933
|
arrayLength: 20,
|
|
5721
5934
|
},
|
|
5722
|
-
{
|
|
5723
|
-
name: 'satellites_visible',
|
|
5724
|
-
type: 'uint8_t',
|
|
5725
|
-
},
|
|
5726
5935
|
]
|
|
5727
5936
|
},
|
|
5728
5937
|
{
|
|
@@ -5997,48 +6206,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
5997
6206
|
},
|
|
5998
6207
|
]
|
|
5999
6208
|
},
|
|
6000
|
-
{
|
|
6001
|
-
id: 33,
|
|
6002
|
-
name: 'GLOBAL_POSITION_INT',
|
|
6003
|
-
fields: [
|
|
6004
|
-
{
|
|
6005
|
-
name: 'time_boot_ms',
|
|
6006
|
-
type: 'uint32_t',
|
|
6007
|
-
},
|
|
6008
|
-
{
|
|
6009
|
-
name: 'lat',
|
|
6010
|
-
type: 'int32_t',
|
|
6011
|
-
},
|
|
6012
|
-
{
|
|
6013
|
-
name: 'lon',
|
|
6014
|
-
type: 'int32_t',
|
|
6015
|
-
},
|
|
6016
|
-
{
|
|
6017
|
-
name: 'alt',
|
|
6018
|
-
type: 'int32_t',
|
|
6019
|
-
},
|
|
6020
|
-
{
|
|
6021
|
-
name: 'relative_alt',
|
|
6022
|
-
type: 'int32_t',
|
|
6023
|
-
},
|
|
6024
|
-
{
|
|
6025
|
-
name: 'vx',
|
|
6026
|
-
type: 'int16_t',
|
|
6027
|
-
},
|
|
6028
|
-
{
|
|
6029
|
-
name: 'vy',
|
|
6030
|
-
type: 'int16_t',
|
|
6031
|
-
},
|
|
6032
|
-
{
|
|
6033
|
-
name: 'vz',
|
|
6034
|
-
type: 'int16_t',
|
|
6035
|
-
},
|
|
6036
|
-
{
|
|
6037
|
-
name: 'hdg',
|
|
6038
|
-
type: 'uint16_t',
|
|
6039
|
-
},
|
|
6040
|
-
]
|
|
6041
|
-
},
|
|
6042
6209
|
{
|
|
6043
6210
|
id: 34,
|
|
6044
6211
|
name: 'RC_CHANNELS_SCALED',
|
|
@@ -6585,11 +6752,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
6585
6752
|
id: 50,
|
|
6586
6753
|
name: 'PARAM_MAP_RC',
|
|
6587
6754
|
fields: [
|
|
6588
|
-
{
|
|
6589
|
-
name: 'param_id',
|
|
6590
|
-
type: 'char',
|
|
6591
|
-
arrayLength: 16,
|
|
6592
|
-
},
|
|
6593
6755
|
{
|
|
6594
6756
|
name: 'param_value0',
|
|
6595
6757
|
type: 'float',
|
|
@@ -6618,6 +6780,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
6618
6780
|
name: 'target_component',
|
|
6619
6781
|
type: 'uint8_t',
|
|
6620
6782
|
},
|
|
6783
|
+
{
|
|
6784
|
+
name: 'param_id',
|
|
6785
|
+
type: 'char',
|
|
6786
|
+
arrayLength: 16,
|
|
6787
|
+
},
|
|
6621
6788
|
{
|
|
6622
6789
|
name: 'parameter_rc_channel_index',
|
|
6623
6790
|
type: 'uint8_t',
|
|
@@ -6728,19 +6895,14 @@ const MESSAGE_DEFINITIONS = [
|
|
|
6728
6895
|
name: 'ATTITUDE_QUATERNION_COV',
|
|
6729
6896
|
fields: [
|
|
6730
6897
|
{
|
|
6731
|
-
name: '
|
|
6732
|
-
type: '
|
|
6733
|
-
arrayLength: 9,
|
|
6898
|
+
name: 'time_usec',
|
|
6899
|
+
type: 'uint64_t',
|
|
6734
6900
|
},
|
|
6735
6901
|
{
|
|
6736
6902
|
name: 'q',
|
|
6737
6903
|
type: 'float',
|
|
6738
6904
|
arrayLength: 4,
|
|
6739
6905
|
},
|
|
6740
|
-
{
|
|
6741
|
-
name: 'time_usec',
|
|
6742
|
-
type: 'uint64_t',
|
|
6743
|
-
},
|
|
6744
6906
|
{
|
|
6745
6907
|
name: 'rollspeed',
|
|
6746
6908
|
type: 'float',
|
|
@@ -6753,6 +6915,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
6753
6915
|
name: 'yawspeed',
|
|
6754
6916
|
type: 'float',
|
|
6755
6917
|
},
|
|
6918
|
+
{
|
|
6919
|
+
name: 'covariance',
|
|
6920
|
+
type: 'float',
|
|
6921
|
+
arrayLength: 9,
|
|
6922
|
+
},
|
|
6756
6923
|
]
|
|
6757
6924
|
},
|
|
6758
6925
|
{
|
|
@@ -6797,11 +6964,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
6797
6964
|
id: 63,
|
|
6798
6965
|
name: 'GLOBAL_POSITION_INT_COV',
|
|
6799
6966
|
fields: [
|
|
6800
|
-
{
|
|
6801
|
-
name: 'covariance',
|
|
6802
|
-
type: 'float',
|
|
6803
|
-
arrayLength: 36,
|
|
6804
|
-
},
|
|
6805
6967
|
{
|
|
6806
6968
|
name: 'time_usec',
|
|
6807
6969
|
type: 'uint64_t',
|
|
@@ -6834,6 +6996,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
6834
6996
|
name: 'vz',
|
|
6835
6997
|
type: 'float',
|
|
6836
6998
|
},
|
|
6999
|
+
{
|
|
7000
|
+
name: 'covariance',
|
|
7001
|
+
type: 'float',
|
|
7002
|
+
arrayLength: 36,
|
|
7003
|
+
},
|
|
6837
7004
|
{
|
|
6838
7005
|
name: 'estimator_type',
|
|
6839
7006
|
type: 'uint8_t',
|
|
@@ -6844,11 +7011,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
6844
7011
|
id: 64,
|
|
6845
7012
|
name: 'LOCAL_POSITION_NED_COV',
|
|
6846
7013
|
fields: [
|
|
6847
|
-
{
|
|
6848
|
-
name: 'covariance',
|
|
6849
|
-
type: 'float',
|
|
6850
|
-
arrayLength: 45,
|
|
6851
|
-
},
|
|
6852
7014
|
{
|
|
6853
7015
|
name: 'time_usec',
|
|
6854
7016
|
type: 'uint64_t',
|
|
@@ -6889,6 +7051,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
6889
7051
|
name: 'az',
|
|
6890
7052
|
type: 'float',
|
|
6891
7053
|
},
|
|
7054
|
+
{
|
|
7055
|
+
name: 'covariance',
|
|
7056
|
+
type: 'float',
|
|
7057
|
+
arrayLength: 45,
|
|
7058
|
+
},
|
|
6892
7059
|
{
|
|
6893
7060
|
name: 'estimator_type',
|
|
6894
7061
|
type: 'uint8_t',
|
|
@@ -7500,15 +7667,15 @@ const MESSAGE_DEFINITIONS = [
|
|
|
7500
7667
|
id: 82,
|
|
7501
7668
|
name: 'SET_ATTITUDE_TARGET',
|
|
7502
7669
|
fields: [
|
|
7670
|
+
{
|
|
7671
|
+
name: 'time_boot_ms',
|
|
7672
|
+
type: 'uint32_t',
|
|
7673
|
+
},
|
|
7503
7674
|
{
|
|
7504
7675
|
name: 'q',
|
|
7505
7676
|
type: 'float',
|
|
7506
7677
|
arrayLength: 4,
|
|
7507
7678
|
},
|
|
7508
|
-
{
|
|
7509
|
-
name: 'time_boot_ms',
|
|
7510
|
-
type: 'uint32_t',
|
|
7511
|
-
},
|
|
7512
7679
|
{
|
|
7513
7680
|
name: 'body_roll_rate',
|
|
7514
7681
|
type: 'float',
|
|
@@ -7549,15 +7716,15 @@ const MESSAGE_DEFINITIONS = [
|
|
|
7549
7716
|
id: 83,
|
|
7550
7717
|
name: 'ATTITUDE_TARGET',
|
|
7551
7718
|
fields: [
|
|
7719
|
+
{
|
|
7720
|
+
name: 'time_boot_ms',
|
|
7721
|
+
type: 'uint32_t',
|
|
7722
|
+
},
|
|
7552
7723
|
{
|
|
7553
7724
|
name: 'q',
|
|
7554
7725
|
type: 'float',
|
|
7555
7726
|
arrayLength: 4,
|
|
7556
7727
|
},
|
|
7557
|
-
{
|
|
7558
|
-
name: 'time_boot_ms',
|
|
7559
|
-
type: 'uint32_t',
|
|
7560
|
-
},
|
|
7561
7728
|
{
|
|
7562
7729
|
name: 'body_roll_rate',
|
|
7563
7730
|
type: 'float',
|
|
@@ -8064,11 +8231,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
8064
8231
|
id: 93,
|
|
8065
8232
|
name: 'HIL_ACTUATOR_CONTROLS',
|
|
8066
8233
|
fields: [
|
|
8067
|
-
{
|
|
8068
|
-
name: 'controls',
|
|
8069
|
-
type: 'float',
|
|
8070
|
-
arrayLength: 16,
|
|
8071
|
-
},
|
|
8072
8234
|
{
|
|
8073
8235
|
name: 'time_usec',
|
|
8074
8236
|
type: 'uint64_t',
|
|
@@ -8077,6 +8239,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
8077
8239
|
name: 'flags',
|
|
8078
8240
|
type: 'uint64_t',
|
|
8079
8241
|
},
|
|
8242
|
+
{
|
|
8243
|
+
name: 'controls',
|
|
8244
|
+
type: 'float',
|
|
8245
|
+
arrayLength: 16,
|
|
8246
|
+
},
|
|
8080
8247
|
{
|
|
8081
8248
|
name: 'mode',
|
|
8082
8249
|
type: 'uint8_t',
|
|
@@ -8628,11 +8795,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
8628
8795
|
id: 110,
|
|
8629
8796
|
name: 'FILE_TRANSFER_PROTOCOL',
|
|
8630
8797
|
fields: [
|
|
8631
|
-
{
|
|
8632
|
-
name: 'payload',
|
|
8633
|
-
type: 'uint8_t',
|
|
8634
|
-
arrayLength: 251,
|
|
8635
|
-
},
|
|
8636
8798
|
{
|
|
8637
8799
|
name: 'target_network',
|
|
8638
8800
|
type: 'uint8_t',
|
|
@@ -8645,6 +8807,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
8645
8807
|
name: 'target_component',
|
|
8646
8808
|
type: 'uint8_t',
|
|
8647
8809
|
},
|
|
8810
|
+
{
|
|
8811
|
+
name: 'payload',
|
|
8812
|
+
type: 'uint8_t',
|
|
8813
|
+
arrayLength: 251,
|
|
8814
|
+
},
|
|
8648
8815
|
]
|
|
8649
8816
|
},
|
|
8650
8817
|
{
|
|
@@ -8811,15 +8978,15 @@ const MESSAGE_DEFINITIONS = [
|
|
|
8811
8978
|
id: 115,
|
|
8812
8979
|
name: 'HIL_STATE_QUATERNION',
|
|
8813
8980
|
fields: [
|
|
8981
|
+
{
|
|
8982
|
+
name: 'time_usec',
|
|
8983
|
+
type: 'uint64_t',
|
|
8984
|
+
},
|
|
8814
8985
|
{
|
|
8815
8986
|
name: 'attitude_quaternion',
|
|
8816
8987
|
type: 'float',
|
|
8817
8988
|
arrayLength: 4,
|
|
8818
8989
|
},
|
|
8819
|
-
{
|
|
8820
|
-
name: 'time_usec',
|
|
8821
|
-
type: 'uint64_t',
|
|
8822
|
-
},
|
|
8823
8990
|
{
|
|
8824
8991
|
name: 'rollspeed',
|
|
8825
8992
|
type: 'float',
|
|
@@ -9007,11 +9174,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
9007
9174
|
id: 120,
|
|
9008
9175
|
name: 'LOG_DATA',
|
|
9009
9176
|
fields: [
|
|
9010
|
-
{
|
|
9011
|
-
name: 'data',
|
|
9012
|
-
type: 'uint8_t',
|
|
9013
|
-
arrayLength: 90,
|
|
9014
|
-
},
|
|
9015
9177
|
{
|
|
9016
9178
|
name: 'ofs',
|
|
9017
9179
|
type: 'uint32_t',
|
|
@@ -9024,6 +9186,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
9024
9186
|
name: 'count',
|
|
9025
9187
|
type: 'uint8_t',
|
|
9026
9188
|
},
|
|
9189
|
+
{
|
|
9190
|
+
name: 'data',
|
|
9191
|
+
type: 'uint8_t',
|
|
9192
|
+
arrayLength: 90,
|
|
9193
|
+
},
|
|
9027
9194
|
]
|
|
9028
9195
|
},
|
|
9029
9196
|
{
|
|
@@ -9058,11 +9225,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
9058
9225
|
id: 123,
|
|
9059
9226
|
name: 'GPS_INJECT_DATA',
|
|
9060
9227
|
fields: [
|
|
9061
|
-
{
|
|
9062
|
-
name: 'data',
|
|
9063
|
-
type: 'uint8_t',
|
|
9064
|
-
arrayLength: 110,
|
|
9065
|
-
},
|
|
9066
9228
|
{
|
|
9067
9229
|
name: 'target_system',
|
|
9068
9230
|
type: 'uint8_t',
|
|
@@ -9075,6 +9237,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
9075
9237
|
name: 'len',
|
|
9076
9238
|
type: 'uint8_t',
|
|
9077
9239
|
},
|
|
9240
|
+
{
|
|
9241
|
+
name: 'data',
|
|
9242
|
+
type: 'uint8_t',
|
|
9243
|
+
arrayLength: 110,
|
|
9244
|
+
},
|
|
9078
9245
|
]
|
|
9079
9246
|
},
|
|
9080
9247
|
{
|
|
@@ -9183,11 +9350,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
9183
9350
|
id: 126,
|
|
9184
9351
|
name: 'SERIAL_CONTROL',
|
|
9185
9352
|
fields: [
|
|
9186
|
-
{
|
|
9187
|
-
name: 'data',
|
|
9188
|
-
type: 'uint8_t',
|
|
9189
|
-
arrayLength: 70,
|
|
9190
|
-
},
|
|
9191
9353
|
{
|
|
9192
9354
|
name: 'baudrate',
|
|
9193
9355
|
type: 'uint32_t',
|
|
@@ -9208,6 +9370,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
9208
9370
|
name: 'count',
|
|
9209
9371
|
type: 'uint8_t',
|
|
9210
9372
|
},
|
|
9373
|
+
{
|
|
9374
|
+
name: 'data',
|
|
9375
|
+
type: 'uint8_t',
|
|
9376
|
+
arrayLength: 70,
|
|
9377
|
+
},
|
|
9211
9378
|
{
|
|
9212
9379
|
name: 'target_system',
|
|
9213
9380
|
type: 'uint8_t',
|
|
@@ -9425,15 +9592,15 @@ const MESSAGE_DEFINITIONS = [
|
|
|
9425
9592
|
id: 131,
|
|
9426
9593
|
name: 'ENCAPSULATED_DATA',
|
|
9427
9594
|
fields: [
|
|
9595
|
+
{
|
|
9596
|
+
name: 'seqnr',
|
|
9597
|
+
type: 'uint16_t',
|
|
9598
|
+
},
|
|
9428
9599
|
{
|
|
9429
9600
|
name: 'data',
|
|
9430
9601
|
type: 'uint8_t',
|
|
9431
9602
|
arrayLength: 253,
|
|
9432
9603
|
},
|
|
9433
|
-
{
|
|
9434
|
-
name: 'seqnr',
|
|
9435
|
-
type: 'uint16_t',
|
|
9436
|
-
},
|
|
9437
9604
|
]
|
|
9438
9605
|
},
|
|
9439
9606
|
{
|
|
@@ -9521,11 +9688,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
9521
9688
|
id: 134,
|
|
9522
9689
|
name: 'TERRAIN_DATA',
|
|
9523
9690
|
fields: [
|
|
9524
|
-
{
|
|
9525
|
-
name: 'data',
|
|
9526
|
-
type: 'int16_t',
|
|
9527
|
-
arrayLength: 16,
|
|
9528
|
-
},
|
|
9529
9691
|
{
|
|
9530
9692
|
name: 'lat',
|
|
9531
9693
|
type: 'int32_t',
|
|
@@ -9538,6 +9700,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
9538
9700
|
name: 'grid_spacing',
|
|
9539
9701
|
type: 'uint16_t',
|
|
9540
9702
|
},
|
|
9703
|
+
{
|
|
9704
|
+
name: 'data',
|
|
9705
|
+
type: 'int16_t',
|
|
9706
|
+
arrayLength: 16,
|
|
9707
|
+
},
|
|
9541
9708
|
{
|
|
9542
9709
|
name: 'gridbit',
|
|
9543
9710
|
type: 'uint8_t',
|
|
@@ -9623,15 +9790,15 @@ const MESSAGE_DEFINITIONS = [
|
|
|
9623
9790
|
id: 138,
|
|
9624
9791
|
name: 'ATT_POS_MOCAP',
|
|
9625
9792
|
fields: [
|
|
9793
|
+
{
|
|
9794
|
+
name: 'time_usec',
|
|
9795
|
+
type: 'uint64_t',
|
|
9796
|
+
},
|
|
9626
9797
|
{
|
|
9627
9798
|
name: 'q',
|
|
9628
9799
|
type: 'float',
|
|
9629
9800
|
arrayLength: 4,
|
|
9630
9801
|
},
|
|
9631
|
-
{
|
|
9632
|
-
name: 'time_usec',
|
|
9633
|
-
type: 'uint64_t',
|
|
9634
|
-
},
|
|
9635
9802
|
{
|
|
9636
9803
|
name: 'x',
|
|
9637
9804
|
type: 'float',
|
|
@@ -9656,15 +9823,15 @@ const MESSAGE_DEFINITIONS = [
|
|
|
9656
9823
|
id: 139,
|
|
9657
9824
|
name: 'SET_ACTUATOR_CONTROL_TARGET',
|
|
9658
9825
|
fields: [
|
|
9826
|
+
{
|
|
9827
|
+
name: 'time_usec',
|
|
9828
|
+
type: 'uint64_t',
|
|
9829
|
+
},
|
|
9659
9830
|
{
|
|
9660
9831
|
name: 'controls',
|
|
9661
9832
|
type: 'float',
|
|
9662
9833
|
arrayLength: 8,
|
|
9663
9834
|
},
|
|
9664
|
-
{
|
|
9665
|
-
name: 'time_usec',
|
|
9666
|
-
type: 'uint64_t',
|
|
9667
|
-
},
|
|
9668
9835
|
{
|
|
9669
9836
|
name: 'group_mlx',
|
|
9670
9837
|
type: 'uint8_t',
|
|
@@ -9683,15 +9850,15 @@ const MESSAGE_DEFINITIONS = [
|
|
|
9683
9850
|
id: 140,
|
|
9684
9851
|
name: 'ACTUATOR_CONTROL_TARGET',
|
|
9685
9852
|
fields: [
|
|
9853
|
+
{
|
|
9854
|
+
name: 'time_usec',
|
|
9855
|
+
type: 'uint64_t',
|
|
9856
|
+
},
|
|
9686
9857
|
{
|
|
9687
9858
|
name: 'controls',
|
|
9688
9859
|
type: 'float',
|
|
9689
9860
|
arrayLength: 8,
|
|
9690
9861
|
},
|
|
9691
|
-
{
|
|
9692
|
-
name: 'time_usec',
|
|
9693
|
-
type: 'uint64_t',
|
|
9694
|
-
},
|
|
9695
9862
|
{
|
|
9696
9863
|
name: 'group_mlx',
|
|
9697
9864
|
type: 'uint8_t',
|
|
@@ -9737,26 +9904,26 @@ const MESSAGE_DEFINITIONS = [
|
|
|
9737
9904
|
name: 'RESOURCE_REQUEST',
|
|
9738
9905
|
fields: [
|
|
9739
9906
|
{
|
|
9740
|
-
name: '
|
|
9907
|
+
name: 'request_id',
|
|
9741
9908
|
type: 'uint8_t',
|
|
9742
|
-
arrayLength: 120,
|
|
9743
9909
|
},
|
|
9744
9910
|
{
|
|
9745
|
-
name: '
|
|
9911
|
+
name: 'uri_type',
|
|
9746
9912
|
type: 'uint8_t',
|
|
9747
|
-
arrayLength: 120,
|
|
9748
9913
|
},
|
|
9749
9914
|
{
|
|
9750
|
-
name: '
|
|
9915
|
+
name: 'uri',
|
|
9751
9916
|
type: 'uint8_t',
|
|
9917
|
+
arrayLength: 120,
|
|
9752
9918
|
},
|
|
9753
9919
|
{
|
|
9754
|
-
name: '
|
|
9920
|
+
name: 'transfer_type',
|
|
9755
9921
|
type: 'uint8_t',
|
|
9756
9922
|
},
|
|
9757
9923
|
{
|
|
9758
|
-
name: '
|
|
9924
|
+
name: 'storage',
|
|
9759
9925
|
type: 'uint8_t',
|
|
9926
|
+
arrayLength: 120,
|
|
9760
9927
|
},
|
|
9761
9928
|
]
|
|
9762
9929
|
},
|
|
@@ -9792,49 +9959,49 @@ const MESSAGE_DEFINITIONS = [
|
|
|
9792
9959
|
name: 'FOLLOW_TARGET',
|
|
9793
9960
|
fields: [
|
|
9794
9961
|
{
|
|
9795
|
-
name: '
|
|
9796
|
-
type: '
|
|
9797
|
-
arrayLength: 4,
|
|
9962
|
+
name: 'timestamp',
|
|
9963
|
+
type: 'uint64_t',
|
|
9798
9964
|
},
|
|
9799
9965
|
{
|
|
9800
|
-
name: '
|
|
9801
|
-
type: '
|
|
9802
|
-
arrayLength: 3,
|
|
9966
|
+
name: 'custom_state',
|
|
9967
|
+
type: 'uint64_t',
|
|
9803
9968
|
},
|
|
9804
9969
|
{
|
|
9805
|
-
name: '
|
|
9806
|
-
type: '
|
|
9807
|
-
arrayLength: 3,
|
|
9970
|
+
name: 'lat',
|
|
9971
|
+
type: 'int32_t',
|
|
9808
9972
|
},
|
|
9809
9973
|
{
|
|
9810
|
-
name: '
|
|
9811
|
-
type: '
|
|
9812
|
-
arrayLength: 3,
|
|
9974
|
+
name: 'lon',
|
|
9975
|
+
type: 'int32_t',
|
|
9813
9976
|
},
|
|
9814
9977
|
{
|
|
9815
|
-
name: '
|
|
9978
|
+
name: 'alt',
|
|
9816
9979
|
type: 'float',
|
|
9817
|
-
arrayLength: 3,
|
|
9818
9980
|
},
|
|
9819
9981
|
{
|
|
9820
|
-
name: '
|
|
9821
|
-
type: '
|
|
9982
|
+
name: 'vel',
|
|
9983
|
+
type: 'float',
|
|
9984
|
+
arrayLength: 3,
|
|
9822
9985
|
},
|
|
9823
9986
|
{
|
|
9824
|
-
name: '
|
|
9825
|
-
type: '
|
|
9987
|
+
name: 'acc',
|
|
9988
|
+
type: 'float',
|
|
9989
|
+
arrayLength: 3,
|
|
9826
9990
|
},
|
|
9827
9991
|
{
|
|
9828
|
-
name: '
|
|
9829
|
-
type: '
|
|
9992
|
+
name: 'attitude_q',
|
|
9993
|
+
type: 'float',
|
|
9994
|
+
arrayLength: 4,
|
|
9830
9995
|
},
|
|
9831
9996
|
{
|
|
9832
|
-
name: '
|
|
9833
|
-
type: '
|
|
9997
|
+
name: 'rates',
|
|
9998
|
+
type: 'float',
|
|
9999
|
+
arrayLength: 3,
|
|
9834
10000
|
},
|
|
9835
10001
|
{
|
|
9836
|
-
name: '
|
|
10002
|
+
name: 'position_cov',
|
|
9837
10003
|
type: 'float',
|
|
10004
|
+
arrayLength: 3,
|
|
9838
10005
|
},
|
|
9839
10006
|
{
|
|
9840
10007
|
name: 'est_capabilities',
|
|
@@ -9846,21 +10013,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
9846
10013
|
id: 146,
|
|
9847
10014
|
name: 'CONTROL_SYSTEM_STATE',
|
|
9848
10015
|
fields: [
|
|
9849
|
-
{
|
|
9850
|
-
name: 'q',
|
|
9851
|
-
type: 'float',
|
|
9852
|
-
arrayLength: 4,
|
|
9853
|
-
},
|
|
9854
|
-
{
|
|
9855
|
-
name: 'vel_variance',
|
|
9856
|
-
type: 'float',
|
|
9857
|
-
arrayLength: 3,
|
|
9858
|
-
},
|
|
9859
|
-
{
|
|
9860
|
-
name: 'pos_variance',
|
|
9861
|
-
type: 'float',
|
|
9862
|
-
arrayLength: 3,
|
|
9863
|
-
},
|
|
9864
10016
|
{
|
|
9865
10017
|
name: 'time_usec',
|
|
9866
10018
|
type: 'uint64_t',
|
|
@@ -9905,6 +10057,21 @@ const MESSAGE_DEFINITIONS = [
|
|
|
9905
10057
|
name: 'airspeed',
|
|
9906
10058
|
type: 'float',
|
|
9907
10059
|
},
|
|
10060
|
+
{
|
|
10061
|
+
name: 'vel_variance',
|
|
10062
|
+
type: 'float',
|
|
10063
|
+
arrayLength: 3,
|
|
10064
|
+
},
|
|
10065
|
+
{
|
|
10066
|
+
name: 'pos_variance',
|
|
10067
|
+
type: 'float',
|
|
10068
|
+
arrayLength: 3,
|
|
10069
|
+
},
|
|
10070
|
+
{
|
|
10071
|
+
name: 'q',
|
|
10072
|
+
type: 'float',
|
|
10073
|
+
arrayLength: 4,
|
|
10074
|
+
},
|
|
9908
10075
|
{
|
|
9909
10076
|
name: 'roll_rate',
|
|
9910
10077
|
type: 'float',
|
|
@@ -9923,11 +10090,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
9923
10090
|
id: 147,
|
|
9924
10091
|
name: 'BATTERY_STATUS',
|
|
9925
10092
|
fields: [
|
|
9926
|
-
{
|
|
9927
|
-
name: 'voltages',
|
|
9928
|
-
type: 'uint16_t',
|
|
9929
|
-
arrayLength: 10,
|
|
9930
|
-
},
|
|
9931
10093
|
{
|
|
9932
10094
|
name: 'current_consumed',
|
|
9933
10095
|
type: 'int32_t',
|
|
@@ -9940,6 +10102,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
9940
10102
|
name: 'temperature',
|
|
9941
10103
|
type: 'int16_t',
|
|
9942
10104
|
},
|
|
10105
|
+
{
|
|
10106
|
+
name: 'voltages',
|
|
10107
|
+
type: 'uint16_t',
|
|
10108
|
+
arrayLength: 10,
|
|
10109
|
+
},
|
|
9943
10110
|
{
|
|
9944
10111
|
name: 'current_battery',
|
|
9945
10112
|
type: 'int16_t',
|
|
@@ -9988,65 +10155,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
9988
10155
|
},
|
|
9989
10156
|
]
|
|
9990
10157
|
},
|
|
9991
|
-
{
|
|
9992
|
-
id: 148,
|
|
9993
|
-
name: 'AUTOPILOT_VERSION',
|
|
9994
|
-
fields: [
|
|
9995
|
-
{
|
|
9996
|
-
name: 'capabilities',
|
|
9997
|
-
type: 'uint64_t',
|
|
9998
|
-
},
|
|
9999
|
-
{
|
|
10000
|
-
name: 'flight_custom_version',
|
|
10001
|
-
type: 'uint8_t',
|
|
10002
|
-
arrayLength: 8,
|
|
10003
|
-
},
|
|
10004
|
-
{
|
|
10005
|
-
name: 'middleware_custom_version',
|
|
10006
|
-
type: 'uint8_t',
|
|
10007
|
-
arrayLength: 8,
|
|
10008
|
-
},
|
|
10009
|
-
{
|
|
10010
|
-
name: 'os_custom_version',
|
|
10011
|
-
type: 'uint8_t',
|
|
10012
|
-
arrayLength: 8,
|
|
10013
|
-
},
|
|
10014
|
-
{
|
|
10015
|
-
name: 'uid',
|
|
10016
|
-
type: 'uint64_t',
|
|
10017
|
-
},
|
|
10018
|
-
{
|
|
10019
|
-
name: 'flight_sw_version',
|
|
10020
|
-
type: 'uint32_t',
|
|
10021
|
-
},
|
|
10022
|
-
{
|
|
10023
|
-
name: 'middleware_sw_version',
|
|
10024
|
-
type: 'uint32_t',
|
|
10025
|
-
},
|
|
10026
|
-
{
|
|
10027
|
-
name: 'os_sw_version',
|
|
10028
|
-
type: 'uint32_t',
|
|
10029
|
-
},
|
|
10030
|
-
{
|
|
10031
|
-
name: 'board_version',
|
|
10032
|
-
type: 'uint32_t',
|
|
10033
|
-
},
|
|
10034
|
-
{
|
|
10035
|
-
name: 'vendor_id',
|
|
10036
|
-
type: 'uint16_t',
|
|
10037
|
-
},
|
|
10038
|
-
{
|
|
10039
|
-
name: 'product_id',
|
|
10040
|
-
type: 'uint16_t',
|
|
10041
|
-
},
|
|
10042
|
-
{
|
|
10043
|
-
name: 'uid2',
|
|
10044
|
-
type: 'uint8_t',
|
|
10045
|
-
arrayLength: 18,
|
|
10046
|
-
extension: true,
|
|
10047
|
-
},
|
|
10048
|
-
]
|
|
10049
|
-
},
|
|
10050
10158
|
{
|
|
10051
10159
|
id: 149,
|
|
10052
10160
|
name: 'LANDING_TARGET',
|
|
@@ -10485,17 +10593,17 @@ const MESSAGE_DEFINITIONS = [
|
|
|
10485
10593
|
name: 'GPS_RTCM_DATA',
|
|
10486
10594
|
fields: [
|
|
10487
10595
|
{
|
|
10488
|
-
name: '
|
|
10596
|
+
name: 'flags',
|
|
10489
10597
|
type: 'uint8_t',
|
|
10490
|
-
arrayLength: 180,
|
|
10491
10598
|
},
|
|
10492
10599
|
{
|
|
10493
|
-
name: '
|
|
10600
|
+
name: 'len',
|
|
10494
10601
|
type: 'uint8_t',
|
|
10495
10602
|
},
|
|
10496
10603
|
{
|
|
10497
|
-
name: '
|
|
10604
|
+
name: 'data',
|
|
10498
10605
|
type: 'uint8_t',
|
|
10606
|
+
arrayLength: 180,
|
|
10499
10607
|
},
|
|
10500
10608
|
]
|
|
10501
10609
|
},
|
|
@@ -10753,11 +10861,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
10753
10861
|
id: 242,
|
|
10754
10862
|
name: 'HOME_POSITION',
|
|
10755
10863
|
fields: [
|
|
10756
|
-
{
|
|
10757
|
-
name: 'q',
|
|
10758
|
-
type: 'float',
|
|
10759
|
-
arrayLength: 4,
|
|
10760
|
-
},
|
|
10761
10864
|
{
|
|
10762
10865
|
name: 'latitude',
|
|
10763
10866
|
type: 'int32_t',
|
|
@@ -10782,6 +10885,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
10782
10885
|
name: 'z',
|
|
10783
10886
|
type: 'float',
|
|
10784
10887
|
},
|
|
10888
|
+
{
|
|
10889
|
+
name: 'q',
|
|
10890
|
+
type: 'float',
|
|
10891
|
+
arrayLength: 4,
|
|
10892
|
+
},
|
|
10785
10893
|
{
|
|
10786
10894
|
name: 'approach_x',
|
|
10787
10895
|
type: 'float',
|
|
@@ -10805,11 +10913,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
10805
10913
|
id: 243,
|
|
10806
10914
|
name: 'SET_HOME_POSITION',
|
|
10807
10915
|
fields: [
|
|
10808
|
-
{
|
|
10809
|
-
name: 'q',
|
|
10810
|
-
type: 'float',
|
|
10811
|
-
arrayLength: 4,
|
|
10812
|
-
},
|
|
10813
10916
|
{
|
|
10814
10917
|
name: 'latitude',
|
|
10815
10918
|
type: 'int32_t',
|
|
@@ -10834,6 +10937,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
10834
10937
|
name: 'z',
|
|
10835
10938
|
type: 'float',
|
|
10836
10939
|
},
|
|
10940
|
+
{
|
|
10941
|
+
name: 'q',
|
|
10942
|
+
type: 'float',
|
|
10943
|
+
arrayLength: 4,
|
|
10944
|
+
},
|
|
10837
10945
|
{
|
|
10838
10946
|
name: 'approach_x',
|
|
10839
10947
|
type: 'float',
|
|
@@ -10889,11 +10997,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
10889
10997
|
id: 246,
|
|
10890
10998
|
name: 'ADSB_VEHICLE',
|
|
10891
10999
|
fields: [
|
|
10892
|
-
{
|
|
10893
|
-
name: 'callsign',
|
|
10894
|
-
type: 'char',
|
|
10895
|
-
arrayLength: 9,
|
|
10896
|
-
},
|
|
10897
11000
|
{
|
|
10898
11001
|
name: 'icao_address',
|
|
10899
11002
|
type: 'uint32_t',
|
|
@@ -10934,6 +11037,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
10934
11037
|
name: 'altitude_type',
|
|
10935
11038
|
type: 'uint8_t',
|
|
10936
11039
|
},
|
|
11040
|
+
{
|
|
11041
|
+
name: 'callsign',
|
|
11042
|
+
type: 'char',
|
|
11043
|
+
arrayLength: 9,
|
|
11044
|
+
},
|
|
10937
11045
|
{
|
|
10938
11046
|
name: 'emitter_type',
|
|
10939
11047
|
type: 'uint8_t',
|
|
@@ -10982,11 +11090,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
10982
11090
|
id: 248,
|
|
10983
11091
|
name: 'V2_EXTENSION',
|
|
10984
11092
|
fields: [
|
|
10985
|
-
{
|
|
10986
|
-
name: 'payload',
|
|
10987
|
-
type: 'uint8_t',
|
|
10988
|
-
arrayLength: 249,
|
|
10989
|
-
},
|
|
10990
11093
|
{
|
|
10991
11094
|
name: 'message_type',
|
|
10992
11095
|
type: 'uint16_t',
|
|
@@ -11003,17 +11106,17 @@ const MESSAGE_DEFINITIONS = [
|
|
|
11003
11106
|
name: 'target_component',
|
|
11004
11107
|
type: 'uint8_t',
|
|
11005
11108
|
},
|
|
11109
|
+
{
|
|
11110
|
+
name: 'payload',
|
|
11111
|
+
type: 'uint8_t',
|
|
11112
|
+
arrayLength: 249,
|
|
11113
|
+
},
|
|
11006
11114
|
]
|
|
11007
11115
|
},
|
|
11008
11116
|
{
|
|
11009
11117
|
id: 249,
|
|
11010
11118
|
name: 'MEMORY_VECT',
|
|
11011
11119
|
fields: [
|
|
11012
|
-
{
|
|
11013
|
-
name: 'value',
|
|
11014
|
-
type: 'int8_t',
|
|
11015
|
-
arrayLength: 32,
|
|
11016
|
-
},
|
|
11017
11120
|
{
|
|
11018
11121
|
name: 'address',
|
|
11019
11122
|
type: 'uint16_t',
|
|
@@ -11026,17 +11129,17 @@ const MESSAGE_DEFINITIONS = [
|
|
|
11026
11129
|
name: 'type',
|
|
11027
11130
|
type: 'uint8_t',
|
|
11028
11131
|
},
|
|
11132
|
+
{
|
|
11133
|
+
name: 'value',
|
|
11134
|
+
type: 'int8_t',
|
|
11135
|
+
arrayLength: 32,
|
|
11136
|
+
},
|
|
11029
11137
|
]
|
|
11030
11138
|
},
|
|
11031
11139
|
{
|
|
11032
11140
|
id: 250,
|
|
11033
11141
|
name: 'DEBUG_VECT',
|
|
11034
11142
|
fields: [
|
|
11035
|
-
{
|
|
11036
|
-
name: 'name',
|
|
11037
|
-
type: 'char',
|
|
11038
|
-
arrayLength: 10,
|
|
11039
|
-
},
|
|
11040
11143
|
{
|
|
11041
11144
|
name: 'time_usec',
|
|
11042
11145
|
type: 'uint64_t',
|
|
@@ -11053,17 +11156,17 @@ const MESSAGE_DEFINITIONS = [
|
|
|
11053
11156
|
name: 'z',
|
|
11054
11157
|
type: 'float',
|
|
11055
11158
|
},
|
|
11159
|
+
{
|
|
11160
|
+
name: 'name',
|
|
11161
|
+
type: 'char',
|
|
11162
|
+
arrayLength: 10,
|
|
11163
|
+
},
|
|
11056
11164
|
]
|
|
11057
11165
|
},
|
|
11058
11166
|
{
|
|
11059
11167
|
id: 251,
|
|
11060
11168
|
name: 'NAMED_VALUE_FLOAT',
|
|
11061
11169
|
fields: [
|
|
11062
|
-
{
|
|
11063
|
-
name: 'name',
|
|
11064
|
-
type: 'char',
|
|
11065
|
-
arrayLength: 10,
|
|
11066
|
-
},
|
|
11067
11170
|
{
|
|
11068
11171
|
name: 'time_boot_ms',
|
|
11069
11172
|
type: 'uint32_t',
|
|
@@ -11072,17 +11175,17 @@ const MESSAGE_DEFINITIONS = [
|
|
|
11072
11175
|
name: 'value',
|
|
11073
11176
|
type: 'float',
|
|
11074
11177
|
},
|
|
11178
|
+
{
|
|
11179
|
+
name: 'name',
|
|
11180
|
+
type: 'char',
|
|
11181
|
+
arrayLength: 10,
|
|
11182
|
+
},
|
|
11075
11183
|
]
|
|
11076
11184
|
},
|
|
11077
11185
|
{
|
|
11078
11186
|
id: 252,
|
|
11079
11187
|
name: 'NAMED_VALUE_INT',
|
|
11080
11188
|
fields: [
|
|
11081
|
-
{
|
|
11082
|
-
name: 'name',
|
|
11083
|
-
type: 'char',
|
|
11084
|
-
arrayLength: 10,
|
|
11085
|
-
},
|
|
11086
11189
|
{
|
|
11087
11190
|
name: 'time_boot_ms',
|
|
11088
11191
|
type: 'uint32_t',
|
|
@@ -11091,21 +11194,26 @@ const MESSAGE_DEFINITIONS = [
|
|
|
11091
11194
|
name: 'value',
|
|
11092
11195
|
type: 'int32_t',
|
|
11093
11196
|
},
|
|
11197
|
+
{
|
|
11198
|
+
name: 'name',
|
|
11199
|
+
type: 'char',
|
|
11200
|
+
arrayLength: 10,
|
|
11201
|
+
},
|
|
11094
11202
|
]
|
|
11095
11203
|
},
|
|
11096
11204
|
{
|
|
11097
11205
|
id: 253,
|
|
11098
11206
|
name: 'STATUSTEXT',
|
|
11099
11207
|
fields: [
|
|
11208
|
+
{
|
|
11209
|
+
name: 'severity',
|
|
11210
|
+
type: 'uint8_t',
|
|
11211
|
+
},
|
|
11100
11212
|
{
|
|
11101
11213
|
name: 'text',
|
|
11102
11214
|
type: 'char',
|
|
11103
11215
|
arrayLength: 50,
|
|
11104
11216
|
},
|
|
11105
|
-
{
|
|
11106
|
-
name: 'severity',
|
|
11107
|
-
type: 'uint8_t',
|
|
11108
|
-
},
|
|
11109
11217
|
{
|
|
11110
11218
|
name: 'id',
|
|
11111
11219
|
type: 'uint16_t',
|
|
@@ -11140,11 +11248,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
11140
11248
|
id: 256,
|
|
11141
11249
|
name: 'SETUP_SIGNING',
|
|
11142
11250
|
fields: [
|
|
11143
|
-
{
|
|
11144
|
-
name: 'secret_key',
|
|
11145
|
-
type: 'uint8_t',
|
|
11146
|
-
arrayLength: 32,
|
|
11147
|
-
},
|
|
11148
11251
|
{
|
|
11149
11252
|
name: 'initial_timestamp',
|
|
11150
11253
|
type: 'uint64_t',
|
|
@@ -11157,6 +11260,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
11157
11260
|
name: 'target_component',
|
|
11158
11261
|
type: 'uint8_t',
|
|
11159
11262
|
},
|
|
11263
|
+
{
|
|
11264
|
+
name: 'secret_key',
|
|
11265
|
+
type: 'uint8_t',
|
|
11266
|
+
arrayLength: 32,
|
|
11267
|
+
},
|
|
11160
11268
|
]
|
|
11161
11269
|
},
|
|
11162
11270
|
{
|
|
@@ -11181,11 +11289,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
11181
11289
|
id: 258,
|
|
11182
11290
|
name: 'PLAY_TUNE',
|
|
11183
11291
|
fields: [
|
|
11184
|
-
{
|
|
11185
|
-
name: 'tune',
|
|
11186
|
-
type: 'char',
|
|
11187
|
-
arrayLength: 30,
|
|
11188
|
-
},
|
|
11189
11292
|
{
|
|
11190
11293
|
name: 'target_system',
|
|
11191
11294
|
type: 'uint8_t',
|
|
@@ -11194,6 +11297,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
11194
11297
|
name: 'target_component',
|
|
11195
11298
|
type: 'uint8_t',
|
|
11196
11299
|
},
|
|
11300
|
+
{
|
|
11301
|
+
name: 'tune',
|
|
11302
|
+
type: 'char',
|
|
11303
|
+
arrayLength: 30,
|
|
11304
|
+
},
|
|
11197
11305
|
{
|
|
11198
11306
|
name: 'tune2',
|
|
11199
11307
|
type: 'char',
|
|
@@ -11207,27 +11315,12 @@ const MESSAGE_DEFINITIONS = [
|
|
|
11207
11315
|
name: 'CAMERA_INFORMATION',
|
|
11208
11316
|
fields: [
|
|
11209
11317
|
{
|
|
11210
|
-
name: '
|
|
11211
|
-
type: '
|
|
11212
|
-
arrayLength: 140,
|
|
11318
|
+
name: 'time_boot_ms',
|
|
11319
|
+
type: 'uint32_t',
|
|
11213
11320
|
},
|
|
11214
11321
|
{
|
|
11215
|
-
name: '
|
|
11216
|
-
type: '
|
|
11217
|
-
arrayLength: 32,
|
|
11218
|
-
},
|
|
11219
|
-
{
|
|
11220
|
-
name: 'model_name',
|
|
11221
|
-
type: 'uint8_t',
|
|
11222
|
-
arrayLength: 32,
|
|
11223
|
-
},
|
|
11224
|
-
{
|
|
11225
|
-
name: 'time_boot_ms',
|
|
11226
|
-
type: 'uint32_t',
|
|
11227
|
-
},
|
|
11228
|
-
{
|
|
11229
|
-
name: 'firmware_version',
|
|
11230
|
-
type: 'uint32_t',
|
|
11322
|
+
name: 'firmware_version',
|
|
11323
|
+
type: 'uint32_t',
|
|
11231
11324
|
},
|
|
11232
11325
|
{
|
|
11233
11326
|
name: 'focal_length',
|
|
@@ -11257,10 +11350,25 @@ const MESSAGE_DEFINITIONS = [
|
|
|
11257
11350
|
name: 'cam_definition_version',
|
|
11258
11351
|
type: 'uint16_t',
|
|
11259
11352
|
},
|
|
11353
|
+
{
|
|
11354
|
+
name: 'vendor_name',
|
|
11355
|
+
type: 'uint8_t',
|
|
11356
|
+
arrayLength: 32,
|
|
11357
|
+
},
|
|
11358
|
+
{
|
|
11359
|
+
name: 'model_name',
|
|
11360
|
+
type: 'uint8_t',
|
|
11361
|
+
arrayLength: 32,
|
|
11362
|
+
},
|
|
11260
11363
|
{
|
|
11261
11364
|
name: 'lens_id',
|
|
11262
11365
|
type: 'uint8_t',
|
|
11263
11366
|
},
|
|
11367
|
+
{
|
|
11368
|
+
name: 'cam_definition_uri',
|
|
11369
|
+
type: 'char',
|
|
11370
|
+
arrayLength: 140,
|
|
11371
|
+
},
|
|
11264
11372
|
{
|
|
11265
11373
|
name: 'gimbal_device_id',
|
|
11266
11374
|
type: 'uint8_t',
|
|
@@ -11404,16 +11512,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
11404
11512
|
id: 263,
|
|
11405
11513
|
name: 'CAMERA_IMAGE_CAPTURED',
|
|
11406
11514
|
fields: [
|
|
11407
|
-
{
|
|
11408
|
-
name: 'file_url',
|
|
11409
|
-
type: 'char',
|
|
11410
|
-
arrayLength: 205,
|
|
11411
|
-
},
|
|
11412
|
-
{
|
|
11413
|
-
name: 'q',
|
|
11414
|
-
type: 'float',
|
|
11415
|
-
arrayLength: 4,
|
|
11416
|
-
},
|
|
11417
11515
|
{
|
|
11418
11516
|
name: 'time_utc',
|
|
11419
11517
|
type: 'uint64_t',
|
|
@@ -11438,6 +11536,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
11438
11536
|
name: 'relative_alt',
|
|
11439
11537
|
type: 'int32_t',
|
|
11440
11538
|
},
|
|
11539
|
+
{
|
|
11540
|
+
name: 'q',
|
|
11541
|
+
type: 'float',
|
|
11542
|
+
arrayLength: 4,
|
|
11543
|
+
},
|
|
11441
11544
|
{
|
|
11442
11545
|
name: 'image_index',
|
|
11443
11546
|
type: 'int32_t',
|
|
@@ -11450,6 +11553,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
11450
11553
|
name: 'capture_result',
|
|
11451
11554
|
type: 'int8_t',
|
|
11452
11555
|
},
|
|
11556
|
+
{
|
|
11557
|
+
name: 'file_url',
|
|
11558
|
+
type: 'char',
|
|
11559
|
+
arrayLength: 205,
|
|
11560
|
+
},
|
|
11453
11561
|
]
|
|
11454
11562
|
},
|
|
11455
11563
|
{
|
|
@@ -11510,11 +11618,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
11510
11618
|
id: 266,
|
|
11511
11619
|
name: 'LOGGING_DATA',
|
|
11512
11620
|
fields: [
|
|
11513
|
-
{
|
|
11514
|
-
name: 'data',
|
|
11515
|
-
type: 'uint8_t',
|
|
11516
|
-
arrayLength: 249,
|
|
11517
|
-
},
|
|
11518
11621
|
{
|
|
11519
11622
|
name: 'sequence',
|
|
11520
11623
|
type: 'uint16_t',
|
|
@@ -11535,17 +11638,17 @@ const MESSAGE_DEFINITIONS = [
|
|
|
11535
11638
|
name: 'first_message_offset',
|
|
11536
11639
|
type: 'uint8_t',
|
|
11537
11640
|
},
|
|
11641
|
+
{
|
|
11642
|
+
name: 'data',
|
|
11643
|
+
type: 'uint8_t',
|
|
11644
|
+
arrayLength: 249,
|
|
11645
|
+
},
|
|
11538
11646
|
]
|
|
11539
11647
|
},
|
|
11540
11648
|
{
|
|
11541
11649
|
id: 267,
|
|
11542
11650
|
name: 'LOGGING_DATA_ACKED',
|
|
11543
11651
|
fields: [
|
|
11544
|
-
{
|
|
11545
|
-
name: 'data',
|
|
11546
|
-
type: 'uint8_t',
|
|
11547
|
-
arrayLength: 249,
|
|
11548
|
-
},
|
|
11549
11652
|
{
|
|
11550
11653
|
name: 'sequence',
|
|
11551
11654
|
type: 'uint16_t',
|
|
@@ -11566,6 +11669,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
11566
11669
|
name: 'first_message_offset',
|
|
11567
11670
|
type: 'uint8_t',
|
|
11568
11671
|
},
|
|
11672
|
+
{
|
|
11673
|
+
name: 'data',
|
|
11674
|
+
type: 'uint8_t',
|
|
11675
|
+
arrayLength: 249,
|
|
11676
|
+
},
|
|
11569
11677
|
]
|
|
11570
11678
|
},
|
|
11571
11679
|
{
|
|
@@ -11590,16 +11698,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
11590
11698
|
id: 269,
|
|
11591
11699
|
name: 'VIDEO_STREAM_INFORMATION',
|
|
11592
11700
|
fields: [
|
|
11593
|
-
{
|
|
11594
|
-
name: 'uri',
|
|
11595
|
-
type: 'char',
|
|
11596
|
-
arrayLength: 160,
|
|
11597
|
-
},
|
|
11598
|
-
{
|
|
11599
|
-
name: 'name',
|
|
11600
|
-
type: 'char',
|
|
11601
|
-
arrayLength: 32,
|
|
11602
|
-
},
|
|
11603
11701
|
{
|
|
11604
11702
|
name: 'framerate',
|
|
11605
11703
|
type: 'float',
|
|
@@ -11640,6 +11738,16 @@ const MESSAGE_DEFINITIONS = [
|
|
|
11640
11738
|
name: 'type',
|
|
11641
11739
|
type: 'uint8_t',
|
|
11642
11740
|
},
|
|
11741
|
+
{
|
|
11742
|
+
name: 'name',
|
|
11743
|
+
type: 'char',
|
|
11744
|
+
arrayLength: 32,
|
|
11745
|
+
},
|
|
11746
|
+
{
|
|
11747
|
+
name: 'uri',
|
|
11748
|
+
type: 'char',
|
|
11749
|
+
arrayLength: 160,
|
|
11750
|
+
},
|
|
11643
11751
|
{
|
|
11644
11752
|
name: 'encoding',
|
|
11645
11753
|
type: 'uint8_t',
|
|
@@ -11699,11 +11807,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
11699
11807
|
id: 271,
|
|
11700
11808
|
name: 'CAMERA_FOV_STATUS',
|
|
11701
11809
|
fields: [
|
|
11702
|
-
{
|
|
11703
|
-
name: 'q',
|
|
11704
|
-
type: 'float',
|
|
11705
|
-
arrayLength: 4,
|
|
11706
|
-
},
|
|
11707
11810
|
{
|
|
11708
11811
|
name: 'time_boot_ms',
|
|
11709
11812
|
type: 'uint32_t',
|
|
@@ -11732,6 +11835,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
11732
11835
|
name: 'alt_image',
|
|
11733
11836
|
type: 'int32_t',
|
|
11734
11837
|
},
|
|
11838
|
+
{
|
|
11839
|
+
name: 'q',
|
|
11840
|
+
type: 'float',
|
|
11841
|
+
arrayLength: 4,
|
|
11842
|
+
},
|
|
11735
11843
|
{
|
|
11736
11844
|
name: 'hfov',
|
|
11737
11845
|
type: 'float',
|
|
@@ -11983,15 +12091,15 @@ const MESSAGE_DEFINITIONS = [
|
|
|
11983
12091
|
id: 282,
|
|
11984
12092
|
name: 'GIMBAL_MANAGER_SET_ATTITUDE',
|
|
11985
12093
|
fields: [
|
|
12094
|
+
{
|
|
12095
|
+
name: 'flags',
|
|
12096
|
+
type: 'uint32_t',
|
|
12097
|
+
},
|
|
11986
12098
|
{
|
|
11987
12099
|
name: 'q',
|
|
11988
12100
|
type: 'float',
|
|
11989
12101
|
arrayLength: 4,
|
|
11990
12102
|
},
|
|
11991
|
-
{
|
|
11992
|
-
name: 'flags',
|
|
11993
|
-
type: 'uint32_t',
|
|
11994
|
-
},
|
|
11995
12103
|
{
|
|
11996
12104
|
name: 'angular_velocity_x',
|
|
11997
12105
|
type: 'float',
|
|
@@ -12022,21 +12130,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
12022
12130
|
id: 283,
|
|
12023
12131
|
name: 'GIMBAL_DEVICE_INFORMATION',
|
|
12024
12132
|
fields: [
|
|
12025
|
-
{
|
|
12026
|
-
name: 'vendor_name',
|
|
12027
|
-
type: 'char',
|
|
12028
|
-
arrayLength: 32,
|
|
12029
|
-
},
|
|
12030
|
-
{
|
|
12031
|
-
name: 'model_name',
|
|
12032
|
-
type: 'char',
|
|
12033
|
-
arrayLength: 32,
|
|
12034
|
-
},
|
|
12035
|
-
{
|
|
12036
|
-
name: 'custom_name',
|
|
12037
|
-
type: 'char',
|
|
12038
|
-
arrayLength: 32,
|
|
12039
|
-
},
|
|
12040
12133
|
{
|
|
12041
12134
|
name: 'uid',
|
|
12042
12135
|
type: 'uint64_t',
|
|
@@ -12085,6 +12178,21 @@ const MESSAGE_DEFINITIONS = [
|
|
|
12085
12178
|
name: 'custom_cap_flags',
|
|
12086
12179
|
type: 'uint16_t',
|
|
12087
12180
|
},
|
|
12181
|
+
{
|
|
12182
|
+
name: 'vendor_name',
|
|
12183
|
+
type: 'char',
|
|
12184
|
+
arrayLength: 32,
|
|
12185
|
+
},
|
|
12186
|
+
{
|
|
12187
|
+
name: 'model_name',
|
|
12188
|
+
type: 'char',
|
|
12189
|
+
arrayLength: 32,
|
|
12190
|
+
},
|
|
12191
|
+
{
|
|
12192
|
+
name: 'custom_name',
|
|
12193
|
+
type: 'char',
|
|
12194
|
+
arrayLength: 32,
|
|
12195
|
+
},
|
|
12088
12196
|
{
|
|
12089
12197
|
name: 'gimbal_device_id',
|
|
12090
12198
|
type: 'uint8_t',
|
|
@@ -12131,15 +12239,15 @@ const MESSAGE_DEFINITIONS = [
|
|
|
12131
12239
|
id: 285,
|
|
12132
12240
|
name: 'GIMBAL_DEVICE_ATTITUDE_STATUS',
|
|
12133
12241
|
fields: [
|
|
12242
|
+
{
|
|
12243
|
+
name: 'time_boot_ms',
|
|
12244
|
+
type: 'uint32_t',
|
|
12245
|
+
},
|
|
12134
12246
|
{
|
|
12135
12247
|
name: 'q',
|
|
12136
12248
|
type: 'float',
|
|
12137
12249
|
arrayLength: 4,
|
|
12138
12250
|
},
|
|
12139
|
-
{
|
|
12140
|
-
name: 'time_boot_ms',
|
|
12141
|
-
type: 'uint32_t',
|
|
12142
|
-
},
|
|
12143
12251
|
{
|
|
12144
12252
|
name: 'angular_velocity_x',
|
|
12145
12253
|
type: 'float',
|
|
@@ -12189,15 +12297,15 @@ const MESSAGE_DEFINITIONS = [
|
|
|
12189
12297
|
id: 286,
|
|
12190
12298
|
name: 'AUTOPILOT_STATE_FOR_GIMBAL_DEVICE',
|
|
12191
12299
|
fields: [
|
|
12300
|
+
{
|
|
12301
|
+
name: 'time_boot_us',
|
|
12302
|
+
type: 'uint64_t',
|
|
12303
|
+
},
|
|
12192
12304
|
{
|
|
12193
12305
|
name: 'q',
|
|
12194
12306
|
type: 'float',
|
|
12195
12307
|
arrayLength: 4,
|
|
12196
12308
|
},
|
|
12197
|
-
{
|
|
12198
|
-
name: 'time_boot_us',
|
|
12199
|
-
type: 'uint64_t',
|
|
12200
|
-
},
|
|
12201
12309
|
{
|
|
12202
12310
|
name: 'q_estimated_delay_us',
|
|
12203
12311
|
type: 'uint32_t',
|
|
@@ -12325,14 +12433,18 @@ const MESSAGE_DEFINITIONS = [
|
|
|
12325
12433
|
id: 290,
|
|
12326
12434
|
name: 'ESC_INFO',
|
|
12327
12435
|
fields: [
|
|
12436
|
+
{
|
|
12437
|
+
name: 'time_usec',
|
|
12438
|
+
type: 'uint64_t',
|
|
12439
|
+
},
|
|
12328
12440
|
{
|
|
12329
12441
|
name: 'error_count',
|
|
12330
12442
|
type: 'uint32_t',
|
|
12331
12443
|
arrayLength: 4,
|
|
12332
12444
|
},
|
|
12333
12445
|
{
|
|
12334
|
-
name: '
|
|
12335
|
-
type: '
|
|
12446
|
+
name: 'counter',
|
|
12447
|
+
type: 'uint16_t',
|
|
12336
12448
|
},
|
|
12337
12449
|
{
|
|
12338
12450
|
name: 'failure_flags',
|
|
@@ -12344,10 +12456,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
12344
12456
|
type: 'int16_t',
|
|
12345
12457
|
arrayLength: 4,
|
|
12346
12458
|
},
|
|
12347
|
-
{
|
|
12348
|
-
name: 'counter',
|
|
12349
|
-
type: 'uint16_t',
|
|
12350
|
-
},
|
|
12351
12459
|
{
|
|
12352
12460
|
name: 'index',
|
|
12353
12461
|
type: 'uint8_t',
|
|
@@ -12370,6 +12478,10 @@ const MESSAGE_DEFINITIONS = [
|
|
|
12370
12478
|
id: 291,
|
|
12371
12479
|
name: 'ESC_STATUS',
|
|
12372
12480
|
fields: [
|
|
12481
|
+
{
|
|
12482
|
+
name: 'time_usec',
|
|
12483
|
+
type: 'uint64_t',
|
|
12484
|
+
},
|
|
12373
12485
|
{
|
|
12374
12486
|
name: 'rpm',
|
|
12375
12487
|
type: 'int32_t',
|
|
@@ -12386,11 +12498,33 @@ const MESSAGE_DEFINITIONS = [
|
|
|
12386
12498
|
arrayLength: 4,
|
|
12387
12499
|
},
|
|
12388
12500
|
{
|
|
12389
|
-
name: '
|
|
12390
|
-
type: '
|
|
12501
|
+
name: 'index',
|
|
12502
|
+
type: 'uint8_t',
|
|
12503
|
+
},
|
|
12504
|
+
]
|
|
12505
|
+
},
|
|
12506
|
+
{
|
|
12507
|
+
id: 295,
|
|
12508
|
+
name: 'AIRSPEED',
|
|
12509
|
+
fields: [
|
|
12510
|
+
{
|
|
12511
|
+
name: 'airspeed',
|
|
12512
|
+
type: 'float',
|
|
12391
12513
|
},
|
|
12392
12514
|
{
|
|
12393
|
-
name: '
|
|
12515
|
+
name: 'raw_press',
|
|
12516
|
+
type: 'float',
|
|
12517
|
+
},
|
|
12518
|
+
{
|
|
12519
|
+
name: 'temperature',
|
|
12520
|
+
type: 'int16_t',
|
|
12521
|
+
},
|
|
12522
|
+
{
|
|
12523
|
+
name: 'id',
|
|
12524
|
+
type: 'uint8_t',
|
|
12525
|
+
},
|
|
12526
|
+
{
|
|
12527
|
+
name: 'flags',
|
|
12394
12528
|
type: 'uint8_t',
|
|
12395
12529
|
},
|
|
12396
12530
|
]
|
|
@@ -12400,14 +12534,14 @@ const MESSAGE_DEFINITIONS = [
|
|
|
12400
12534
|
name: 'WIFI_CONFIG_AP',
|
|
12401
12535
|
fields: [
|
|
12402
12536
|
{
|
|
12403
|
-
name: '
|
|
12537
|
+
name: 'ssid',
|
|
12404
12538
|
type: 'char',
|
|
12405
|
-
arrayLength:
|
|
12539
|
+
arrayLength: 32,
|
|
12406
12540
|
},
|
|
12407
12541
|
{
|
|
12408
|
-
name: '
|
|
12542
|
+
name: 'password',
|
|
12409
12543
|
type: 'char',
|
|
12410
|
-
arrayLength:
|
|
12544
|
+
arrayLength: 64,
|
|
12411
12545
|
},
|
|
12412
12546
|
{
|
|
12413
12547
|
name: 'mode',
|
|
@@ -12422,19 +12556,37 @@ const MESSAGE_DEFINITIONS = [
|
|
|
12422
12556
|
]
|
|
12423
12557
|
},
|
|
12424
12558
|
{
|
|
12425
|
-
id:
|
|
12426
|
-
name: '
|
|
12559
|
+
id: 300,
|
|
12560
|
+
name: 'PROTOCOL_VERSION',
|
|
12427
12561
|
fields: [
|
|
12428
12562
|
{
|
|
12429
|
-
name: '
|
|
12430
|
-
type: '
|
|
12431
|
-
arrayLength: 20,
|
|
12563
|
+
name: 'version',
|
|
12564
|
+
type: 'uint16_t',
|
|
12432
12565
|
},
|
|
12433
12566
|
{
|
|
12434
|
-
name: '
|
|
12435
|
-
type: '
|
|
12436
|
-
|
|
12567
|
+
name: 'min_version',
|
|
12568
|
+
type: 'uint16_t',
|
|
12569
|
+
},
|
|
12570
|
+
{
|
|
12571
|
+
name: 'max_version',
|
|
12572
|
+
type: 'uint16_t',
|
|
12573
|
+
},
|
|
12574
|
+
{
|
|
12575
|
+
name: 'spec_version_hash',
|
|
12576
|
+
type: 'uint8_t',
|
|
12577
|
+
arrayLength: 8,
|
|
12437
12578
|
},
|
|
12579
|
+
{
|
|
12580
|
+
name: 'library_version_hash',
|
|
12581
|
+
type: 'uint8_t',
|
|
12582
|
+
arrayLength: 8,
|
|
12583
|
+
},
|
|
12584
|
+
]
|
|
12585
|
+
},
|
|
12586
|
+
{
|
|
12587
|
+
id: 301,
|
|
12588
|
+
name: 'AIS_VESSEL',
|
|
12589
|
+
fields: [
|
|
12438
12590
|
{
|
|
12439
12591
|
name: 'mmsi',
|
|
12440
12592
|
type: 'uint32_t',
|
|
@@ -12495,6 +12647,16 @@ const MESSAGE_DEFINITIONS = [
|
|
|
12495
12647
|
name: 'dimension_starboard',
|
|
12496
12648
|
type: 'uint8_t',
|
|
12497
12649
|
},
|
|
12650
|
+
{
|
|
12651
|
+
name: 'callsign',
|
|
12652
|
+
type: 'char',
|
|
12653
|
+
arrayLength: 7,
|
|
12654
|
+
},
|
|
12655
|
+
{
|
|
12656
|
+
name: 'name',
|
|
12657
|
+
type: 'char',
|
|
12658
|
+
arrayLength: 20,
|
|
12659
|
+
},
|
|
12498
12660
|
]
|
|
12499
12661
|
},
|
|
12500
12662
|
{
|
|
@@ -12531,16 +12693,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
12531
12693
|
id: 311,
|
|
12532
12694
|
name: 'UAVCAN_NODE_INFO',
|
|
12533
12695
|
fields: [
|
|
12534
|
-
{
|
|
12535
|
-
name: 'name',
|
|
12536
|
-
type: 'char',
|
|
12537
|
-
arrayLength: 80,
|
|
12538
|
-
},
|
|
12539
|
-
{
|
|
12540
|
-
name: 'hw_unique_id',
|
|
12541
|
-
type: 'uint8_t',
|
|
12542
|
-
arrayLength: 16,
|
|
12543
|
-
},
|
|
12544
12696
|
{
|
|
12545
12697
|
name: 'time_usec',
|
|
12546
12698
|
type: 'uint64_t',
|
|
@@ -12554,13 +12706,23 @@ const MESSAGE_DEFINITIONS = [
|
|
|
12554
12706
|
type: 'uint32_t',
|
|
12555
12707
|
},
|
|
12556
12708
|
{
|
|
12557
|
-
name: '
|
|
12709
|
+
name: 'name',
|
|
12710
|
+
type: 'char',
|
|
12711
|
+
arrayLength: 80,
|
|
12712
|
+
},
|
|
12713
|
+
{
|
|
12714
|
+
name: 'hw_version_major',
|
|
12558
12715
|
type: 'uint8_t',
|
|
12559
12716
|
},
|
|
12560
12717
|
{
|
|
12561
12718
|
name: 'hw_version_minor',
|
|
12562
12719
|
type: 'uint8_t',
|
|
12563
12720
|
},
|
|
12721
|
+
{
|
|
12722
|
+
name: 'hw_unique_id',
|
|
12723
|
+
type: 'uint8_t',
|
|
12724
|
+
arrayLength: 16,
|
|
12725
|
+
},
|
|
12564
12726
|
{
|
|
12565
12727
|
name: 'sw_version_major',
|
|
12566
12728
|
type: 'uint8_t',
|
|
@@ -12575,11 +12737,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
12575
12737
|
id: 320,
|
|
12576
12738
|
name: 'PARAM_EXT_REQUEST_READ',
|
|
12577
12739
|
fields: [
|
|
12578
|
-
{
|
|
12579
|
-
name: 'param_id',
|
|
12580
|
-
type: 'char',
|
|
12581
|
-
arrayLength: 16,
|
|
12582
|
-
},
|
|
12583
12740
|
{
|
|
12584
12741
|
name: 'param_index',
|
|
12585
12742
|
type: 'int16_t',
|
|
@@ -12592,6 +12749,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
12592
12749
|
name: 'target_component',
|
|
12593
12750
|
type: 'uint8_t',
|
|
12594
12751
|
},
|
|
12752
|
+
{
|
|
12753
|
+
name: 'param_id',
|
|
12754
|
+
type: 'char',
|
|
12755
|
+
arrayLength: 16,
|
|
12756
|
+
},
|
|
12595
12757
|
]
|
|
12596
12758
|
},
|
|
12597
12759
|
{
|
|
@@ -12613,9 +12775,12 @@ const MESSAGE_DEFINITIONS = [
|
|
|
12613
12775
|
name: 'PARAM_EXT_VALUE',
|
|
12614
12776
|
fields: [
|
|
12615
12777
|
{
|
|
12616
|
-
name: '
|
|
12617
|
-
type: '
|
|
12618
|
-
|
|
12778
|
+
name: 'param_count',
|
|
12779
|
+
type: 'uint16_t',
|
|
12780
|
+
},
|
|
12781
|
+
{
|
|
12782
|
+
name: 'param_index',
|
|
12783
|
+
type: 'uint16_t',
|
|
12619
12784
|
},
|
|
12620
12785
|
{
|
|
12621
12786
|
name: 'param_id',
|
|
@@ -12623,12 +12788,9 @@ const MESSAGE_DEFINITIONS = [
|
|
|
12623
12788
|
arrayLength: 16,
|
|
12624
12789
|
},
|
|
12625
12790
|
{
|
|
12626
|
-
name: '
|
|
12627
|
-
type: '
|
|
12628
|
-
|
|
12629
|
-
{
|
|
12630
|
-
name: 'param_index',
|
|
12631
|
-
type: 'uint16_t',
|
|
12791
|
+
name: 'param_value',
|
|
12792
|
+
type: 'char',
|
|
12793
|
+
arrayLength: 128,
|
|
12632
12794
|
},
|
|
12633
12795
|
{
|
|
12634
12796
|
name: 'param_type',
|
|
@@ -12641,9 +12803,12 @@ const MESSAGE_DEFINITIONS = [
|
|
|
12641
12803
|
name: 'PARAM_EXT_SET',
|
|
12642
12804
|
fields: [
|
|
12643
12805
|
{
|
|
12644
|
-
name: '
|
|
12645
|
-
type: '
|
|
12646
|
-
|
|
12806
|
+
name: 'target_system',
|
|
12807
|
+
type: 'uint8_t',
|
|
12808
|
+
},
|
|
12809
|
+
{
|
|
12810
|
+
name: 'target_component',
|
|
12811
|
+
type: 'uint8_t',
|
|
12647
12812
|
},
|
|
12648
12813
|
{
|
|
12649
12814
|
name: 'param_id',
|
|
@@ -12651,12 +12816,9 @@ const MESSAGE_DEFINITIONS = [
|
|
|
12651
12816
|
arrayLength: 16,
|
|
12652
12817
|
},
|
|
12653
12818
|
{
|
|
12654
|
-
name: '
|
|
12655
|
-
type: '
|
|
12656
|
-
|
|
12657
|
-
{
|
|
12658
|
-
name: 'target_component',
|
|
12659
|
-
type: 'uint8_t',
|
|
12819
|
+
name: 'param_value',
|
|
12820
|
+
type: 'char',
|
|
12821
|
+
arrayLength: 128,
|
|
12660
12822
|
},
|
|
12661
12823
|
{
|
|
12662
12824
|
name: 'param_type',
|
|
@@ -12669,14 +12831,14 @@ const MESSAGE_DEFINITIONS = [
|
|
|
12669
12831
|
name: 'PARAM_EXT_ACK',
|
|
12670
12832
|
fields: [
|
|
12671
12833
|
{
|
|
12672
|
-
name: '
|
|
12834
|
+
name: 'param_id',
|
|
12673
12835
|
type: 'char',
|
|
12674
|
-
arrayLength:
|
|
12836
|
+
arrayLength: 16,
|
|
12675
12837
|
},
|
|
12676
12838
|
{
|
|
12677
|
-
name: '
|
|
12839
|
+
name: 'param_value',
|
|
12678
12840
|
type: 'char',
|
|
12679
|
-
arrayLength:
|
|
12841
|
+
arrayLength: 128,
|
|
12680
12842
|
},
|
|
12681
12843
|
{
|
|
12682
12844
|
name: 'param_type',
|
|
@@ -12692,15 +12854,15 @@ const MESSAGE_DEFINITIONS = [
|
|
|
12692
12854
|
id: 330,
|
|
12693
12855
|
name: 'OBSTACLE_DISTANCE',
|
|
12694
12856
|
fields: [
|
|
12857
|
+
{
|
|
12858
|
+
name: 'time_usec',
|
|
12859
|
+
type: 'uint64_t',
|
|
12860
|
+
},
|
|
12695
12861
|
{
|
|
12696
12862
|
name: 'distances',
|
|
12697
12863
|
type: 'uint16_t',
|
|
12698
12864
|
arrayLength: 72,
|
|
12699
12865
|
},
|
|
12700
|
-
{
|
|
12701
|
-
name: 'time_usec',
|
|
12702
|
-
type: 'uint64_t',
|
|
12703
|
-
},
|
|
12704
12866
|
{
|
|
12705
12867
|
name: 'min_distance',
|
|
12706
12868
|
type: 'uint16_t',
|
|
@@ -12738,21 +12900,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
12738
12900
|
id: 331,
|
|
12739
12901
|
name: 'ODOMETRY',
|
|
12740
12902
|
fields: [
|
|
12741
|
-
{
|
|
12742
|
-
name: 'pose_covariance',
|
|
12743
|
-
type: 'float',
|
|
12744
|
-
arrayLength: 21,
|
|
12745
|
-
},
|
|
12746
|
-
{
|
|
12747
|
-
name: 'velocity_covariance',
|
|
12748
|
-
type: 'float',
|
|
12749
|
-
arrayLength: 21,
|
|
12750
|
-
},
|
|
12751
|
-
{
|
|
12752
|
-
name: 'q',
|
|
12753
|
-
type: 'float',
|
|
12754
|
-
arrayLength: 4,
|
|
12755
|
-
},
|
|
12756
12903
|
{
|
|
12757
12904
|
name: 'time_usec',
|
|
12758
12905
|
type: 'uint64_t',
|
|
@@ -12769,6 +12916,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
12769
12916
|
name: 'z',
|
|
12770
12917
|
type: 'float',
|
|
12771
12918
|
},
|
|
12919
|
+
{
|
|
12920
|
+
name: 'q',
|
|
12921
|
+
type: 'float',
|
|
12922
|
+
arrayLength: 4,
|
|
12923
|
+
},
|
|
12772
12924
|
{
|
|
12773
12925
|
name: 'vx',
|
|
12774
12926
|
type: 'float',
|
|
@@ -12793,6 +12945,16 @@ const MESSAGE_DEFINITIONS = [
|
|
|
12793
12945
|
name: 'yawspeed',
|
|
12794
12946
|
type: 'float',
|
|
12795
12947
|
},
|
|
12948
|
+
{
|
|
12949
|
+
name: 'pose_covariance',
|
|
12950
|
+
type: 'float',
|
|
12951
|
+
arrayLength: 21,
|
|
12952
|
+
},
|
|
12953
|
+
{
|
|
12954
|
+
name: 'velocity_covariance',
|
|
12955
|
+
type: 'float',
|
|
12956
|
+
arrayLength: 21,
|
|
12957
|
+
},
|
|
12796
12958
|
{
|
|
12797
12959
|
name: 'frame_id',
|
|
12798
12960
|
type: 'uint8_t',
|
|
@@ -12822,6 +12984,10 @@ const MESSAGE_DEFINITIONS = [
|
|
|
12822
12984
|
id: 332,
|
|
12823
12985
|
name: 'TRAJECTORY_REPRESENTATION_WAYPOINTS',
|
|
12824
12986
|
fields: [
|
|
12987
|
+
{
|
|
12988
|
+
name: 'time_usec',
|
|
12989
|
+
type: 'uint64_t',
|
|
12990
|
+
},
|
|
12825
12991
|
{
|
|
12826
12992
|
name: 'pos_x',
|
|
12827
12993
|
type: 'float',
|
|
@@ -12882,10 +13048,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
12882
13048
|
type: 'uint16_t',
|
|
12883
13049
|
arrayLength: 5,
|
|
12884
13050
|
},
|
|
12885
|
-
{
|
|
12886
|
-
name: 'time_usec',
|
|
12887
|
-
type: 'uint64_t',
|
|
12888
|
-
},
|
|
12889
13051
|
{
|
|
12890
13052
|
name: 'valid_points',
|
|
12891
13053
|
type: 'uint8_t',
|
|
@@ -12896,6 +13058,10 @@ const MESSAGE_DEFINITIONS = [
|
|
|
12896
13058
|
id: 333,
|
|
12897
13059
|
name: 'TRAJECTORY_REPRESENTATION_BEZIER',
|
|
12898
13060
|
fields: [
|
|
13061
|
+
{
|
|
13062
|
+
name: 'time_usec',
|
|
13063
|
+
type: 'uint64_t',
|
|
13064
|
+
},
|
|
12899
13065
|
{
|
|
12900
13066
|
name: 'pos_x',
|
|
12901
13067
|
type: 'float',
|
|
@@ -12921,10 +13087,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
12921
13087
|
type: 'float',
|
|
12922
13088
|
arrayLength: 5,
|
|
12923
13089
|
},
|
|
12924
|
-
{
|
|
12925
|
-
name: 'time_usec',
|
|
12926
|
-
type: 'uint64_t',
|
|
12927
|
-
},
|
|
12928
13090
|
{
|
|
12929
13091
|
name: 'valid_points',
|
|
12930
13092
|
type: 'uint8_t',
|
|
@@ -13008,9 +13170,12 @@ const MESSAGE_DEFINITIONS = [
|
|
|
13008
13170
|
name: 'CELLULAR_CONFIG',
|
|
13009
13171
|
fields: [
|
|
13010
13172
|
{
|
|
13011
|
-
name: '
|
|
13012
|
-
type: '
|
|
13013
|
-
|
|
13173
|
+
name: 'enable_lte',
|
|
13174
|
+
type: 'uint8_t',
|
|
13175
|
+
},
|
|
13176
|
+
{
|
|
13177
|
+
name: 'enable_pin',
|
|
13178
|
+
type: 'uint8_t',
|
|
13014
13179
|
},
|
|
13015
13180
|
{
|
|
13016
13181
|
name: 'pin',
|
|
@@ -13023,17 +13188,14 @@ const MESSAGE_DEFINITIONS = [
|
|
|
13023
13188
|
arrayLength: 16,
|
|
13024
13189
|
},
|
|
13025
13190
|
{
|
|
13026
|
-
name: '
|
|
13191
|
+
name: 'apn',
|
|
13027
13192
|
type: 'char',
|
|
13028
|
-
arrayLength:
|
|
13029
|
-
},
|
|
13030
|
-
{
|
|
13031
|
-
name: 'enable_lte',
|
|
13032
|
-
type: 'uint8_t',
|
|
13193
|
+
arrayLength: 32,
|
|
13033
13194
|
},
|
|
13034
13195
|
{
|
|
13035
|
-
name: '
|
|
13036
|
-
type: '
|
|
13196
|
+
name: 'puk',
|
|
13197
|
+
type: 'char',
|
|
13198
|
+
arrayLength: 16,
|
|
13037
13199
|
},
|
|
13038
13200
|
{
|
|
13039
13201
|
name: 'roaming',
|
|
@@ -13063,11 +13225,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
13063
13225
|
id: 340,
|
|
13064
13226
|
name: 'UTM_GLOBAL_POSITION',
|
|
13065
13227
|
fields: [
|
|
13066
|
-
{
|
|
13067
|
-
name: 'uas_id',
|
|
13068
|
-
type: 'uint8_t',
|
|
13069
|
-
arrayLength: 18,
|
|
13070
|
-
},
|
|
13071
13228
|
{
|
|
13072
13229
|
name: 'time',
|
|
13073
13230
|
type: 'uint64_t',
|
|
@@ -13128,6 +13285,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
13128
13285
|
name: 'update_rate',
|
|
13129
13286
|
type: 'uint16_t',
|
|
13130
13287
|
},
|
|
13288
|
+
{
|
|
13289
|
+
name: 'uas_id',
|
|
13290
|
+
type: 'uint8_t',
|
|
13291
|
+
arrayLength: 18,
|
|
13292
|
+
},
|
|
13131
13293
|
{
|
|
13132
13294
|
name: 'flight_state',
|
|
13133
13295
|
type: 'uint8_t',
|
|
@@ -13139,14 +13301,36 @@ const MESSAGE_DEFINITIONS = [
|
|
|
13139
13301
|
]
|
|
13140
13302
|
},
|
|
13141
13303
|
{
|
|
13142
|
-
id:
|
|
13143
|
-
name: '
|
|
13304
|
+
id: 345,
|
|
13305
|
+
name: 'PARAM_ERROR',
|
|
13144
13306
|
fields: [
|
|
13145
13307
|
{
|
|
13146
|
-
name: '
|
|
13308
|
+
name: 'param_index',
|
|
13309
|
+
type: 'int16_t',
|
|
13310
|
+
},
|
|
13311
|
+
{
|
|
13312
|
+
name: 'target_system',
|
|
13313
|
+
type: 'uint8_t',
|
|
13314
|
+
},
|
|
13315
|
+
{
|
|
13316
|
+
name: 'target_component',
|
|
13317
|
+
type: 'uint8_t',
|
|
13318
|
+
},
|
|
13319
|
+
{
|
|
13320
|
+
name: 'param_id',
|
|
13147
13321
|
type: 'char',
|
|
13148
|
-
arrayLength:
|
|
13322
|
+
arrayLength: 16,
|
|
13323
|
+
},
|
|
13324
|
+
{
|
|
13325
|
+
name: 'error',
|
|
13326
|
+
type: 'uint8_t',
|
|
13149
13327
|
},
|
|
13328
|
+
]
|
|
13329
|
+
},
|
|
13330
|
+
{
|
|
13331
|
+
id: 350,
|
|
13332
|
+
name: 'DEBUG_FLOAT_ARRAY',
|
|
13333
|
+
fields: [
|
|
13150
13334
|
{
|
|
13151
13335
|
name: 'time_usec',
|
|
13152
13336
|
type: 'uint64_t',
|
|
@@ -13155,6 +13339,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
13155
13339
|
name: 'array_id',
|
|
13156
13340
|
type: 'uint16_t',
|
|
13157
13341
|
},
|
|
13342
|
+
{
|
|
13343
|
+
name: 'name',
|
|
13344
|
+
type: 'char',
|
|
13345
|
+
arrayLength: 10,
|
|
13346
|
+
},
|
|
13158
13347
|
{
|
|
13159
13348
|
name: 'data',
|
|
13160
13349
|
type: 'float',
|
|
@@ -13197,16 +13386,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
13197
13386
|
id: 370,
|
|
13198
13387
|
name: 'SMART_BATTERY_INFO',
|
|
13199
13388
|
fields: [
|
|
13200
|
-
{
|
|
13201
|
-
name: 'device_name',
|
|
13202
|
-
type: 'char',
|
|
13203
|
-
arrayLength: 50,
|
|
13204
|
-
},
|
|
13205
|
-
{
|
|
13206
|
-
name: 'serial_number',
|
|
13207
|
-
type: 'char',
|
|
13208
|
-
arrayLength: 16,
|
|
13209
|
-
},
|
|
13210
13389
|
{
|
|
13211
13390
|
name: 'capacity_full_specification',
|
|
13212
13391
|
type: 'int32_t',
|
|
@@ -13247,6 +13426,16 @@ const MESSAGE_DEFINITIONS = [
|
|
|
13247
13426
|
name: 'type',
|
|
13248
13427
|
type: 'uint8_t',
|
|
13249
13428
|
},
|
|
13429
|
+
{
|
|
13430
|
+
name: 'serial_number',
|
|
13431
|
+
type: 'char',
|
|
13432
|
+
arrayLength: 16,
|
|
13433
|
+
},
|
|
13434
|
+
{
|
|
13435
|
+
name: 'device_name',
|
|
13436
|
+
type: 'char',
|
|
13437
|
+
arrayLength: 50,
|
|
13438
|
+
},
|
|
13250
13439
|
{
|
|
13251
13440
|
name: 'charging_maximum_voltage',
|
|
13252
13441
|
type: 'uint16_t',
|
|
@@ -13275,6 +13464,44 @@ const MESSAGE_DEFINITIONS = [
|
|
|
13275
13464
|
},
|
|
13276
13465
|
]
|
|
13277
13466
|
},
|
|
13467
|
+
{
|
|
13468
|
+
id: 361,
|
|
13469
|
+
name: 'FIGURE_EIGHT_EXECUTION_STATUS',
|
|
13470
|
+
fields: [
|
|
13471
|
+
{
|
|
13472
|
+
name: 'time_usec',
|
|
13473
|
+
type: 'uint64_t',
|
|
13474
|
+
},
|
|
13475
|
+
{
|
|
13476
|
+
name: 'major_radius',
|
|
13477
|
+
type: 'float',
|
|
13478
|
+
},
|
|
13479
|
+
{
|
|
13480
|
+
name: 'minor_radius',
|
|
13481
|
+
type: 'float',
|
|
13482
|
+
},
|
|
13483
|
+
{
|
|
13484
|
+
name: 'orientation',
|
|
13485
|
+
type: 'float',
|
|
13486
|
+
},
|
|
13487
|
+
{
|
|
13488
|
+
name: 'x',
|
|
13489
|
+
type: 'int32_t',
|
|
13490
|
+
},
|
|
13491
|
+
{
|
|
13492
|
+
name: 'y',
|
|
13493
|
+
type: 'int32_t',
|
|
13494
|
+
},
|
|
13495
|
+
{
|
|
13496
|
+
name: 'z',
|
|
13497
|
+
type: 'float',
|
|
13498
|
+
},
|
|
13499
|
+
{
|
|
13500
|
+
name: 'frame',
|
|
13501
|
+
type: 'uint8_t',
|
|
13502
|
+
},
|
|
13503
|
+
]
|
|
13504
|
+
},
|
|
13278
13505
|
{
|
|
13279
13506
|
id: 371,
|
|
13280
13507
|
name: 'FUEL_STATUS',
|
|
@@ -13317,21 +13544,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
13317
13544
|
id: 372,
|
|
13318
13545
|
name: 'BATTERY_INFO',
|
|
13319
13546
|
fields: [
|
|
13320
|
-
{
|
|
13321
|
-
name: 'name',
|
|
13322
|
-
type: 'char',
|
|
13323
|
-
arrayLength: 50,
|
|
13324
|
-
},
|
|
13325
|
-
{
|
|
13326
|
-
name: 'serial_number',
|
|
13327
|
-
type: 'char',
|
|
13328
|
-
arrayLength: 32,
|
|
13329
|
-
},
|
|
13330
|
-
{
|
|
13331
|
-
name: 'manufacture_date',
|
|
13332
|
-
type: 'char',
|
|
13333
|
-
arrayLength: 9,
|
|
13334
|
-
},
|
|
13335
13547
|
{
|
|
13336
13548
|
name: 'discharge_minimum_voltage',
|
|
13337
13549
|
type: 'float',
|
|
@@ -13400,6 +13612,21 @@ const MESSAGE_DEFINITIONS = [
|
|
|
13400
13612
|
name: 'cells_in_series',
|
|
13401
13613
|
type: 'uint8_t',
|
|
13402
13614
|
},
|
|
13615
|
+
{
|
|
13616
|
+
name: 'manufacture_date',
|
|
13617
|
+
type: 'char',
|
|
13618
|
+
arrayLength: 9,
|
|
13619
|
+
},
|
|
13620
|
+
{
|
|
13621
|
+
name: 'serial_number',
|
|
13622
|
+
type: 'char',
|
|
13623
|
+
arrayLength: 32,
|
|
13624
|
+
},
|
|
13625
|
+
{
|
|
13626
|
+
name: 'name',
|
|
13627
|
+
type: 'char',
|
|
13628
|
+
arrayLength: 50,
|
|
13629
|
+
},
|
|
13403
13630
|
]
|
|
13404
13631
|
},
|
|
13405
13632
|
{
|
|
@@ -13456,11 +13683,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
13456
13683
|
id: 375,
|
|
13457
13684
|
name: 'ACTUATOR_OUTPUT_STATUS',
|
|
13458
13685
|
fields: [
|
|
13459
|
-
{
|
|
13460
|
-
name: 'actuator',
|
|
13461
|
-
type: 'float',
|
|
13462
|
-
arrayLength: 32,
|
|
13463
|
-
},
|
|
13464
13686
|
{
|
|
13465
13687
|
name: 'time_usec',
|
|
13466
13688
|
type: 'uint64_t',
|
|
@@ -13469,6 +13691,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
13469
13691
|
name: 'active',
|
|
13470
13692
|
type: 'uint32_t',
|
|
13471
13693
|
},
|
|
13694
|
+
{
|
|
13695
|
+
name: 'actuator',
|
|
13696
|
+
type: 'float',
|
|
13697
|
+
arrayLength: 32,
|
|
13698
|
+
},
|
|
13472
13699
|
]
|
|
13473
13700
|
},
|
|
13474
13701
|
{
|
|
@@ -13501,11 +13728,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
13501
13728
|
id: 385,
|
|
13502
13729
|
name: 'TUNNEL',
|
|
13503
13730
|
fields: [
|
|
13504
|
-
{
|
|
13505
|
-
name: 'payload',
|
|
13506
|
-
type: 'uint8_t',
|
|
13507
|
-
arrayLength: 128,
|
|
13508
|
-
},
|
|
13509
13731
|
{
|
|
13510
13732
|
name: 'payload_type',
|
|
13511
13733
|
type: 'uint16_t',
|
|
@@ -13522,17 +13744,17 @@ const MESSAGE_DEFINITIONS = [
|
|
|
13522
13744
|
name: 'payload_length',
|
|
13523
13745
|
type: 'uint8_t',
|
|
13524
13746
|
},
|
|
13747
|
+
{
|
|
13748
|
+
name: 'payload',
|
|
13749
|
+
type: 'uint8_t',
|
|
13750
|
+
arrayLength: 128,
|
|
13751
|
+
},
|
|
13525
13752
|
]
|
|
13526
13753
|
},
|
|
13527
13754
|
{
|
|
13528
13755
|
id: 386,
|
|
13529
13756
|
name: 'CAN_FRAME',
|
|
13530
13757
|
fields: [
|
|
13531
|
-
{
|
|
13532
|
-
name: 'data',
|
|
13533
|
-
type: 'uint8_t',
|
|
13534
|
-
arrayLength: 8,
|
|
13535
|
-
},
|
|
13536
13758
|
{
|
|
13537
13759
|
name: 'id',
|
|
13538
13760
|
type: 'uint32_t',
|
|
@@ -13553,6 +13775,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
13553
13775
|
name: 'len',
|
|
13554
13776
|
type: 'uint8_t',
|
|
13555
13777
|
},
|
|
13778
|
+
{
|
|
13779
|
+
name: 'data',
|
|
13780
|
+
type: 'uint8_t',
|
|
13781
|
+
arrayLength: 8,
|
|
13782
|
+
},
|
|
13556
13783
|
]
|
|
13557
13784
|
},
|
|
13558
13785
|
{
|
|
@@ -13560,29 +13787,20 @@ const MESSAGE_DEFINITIONS = [
|
|
|
13560
13787
|
name: 'ONBOARD_COMPUTER_STATUS',
|
|
13561
13788
|
fields: [
|
|
13562
13789
|
{
|
|
13563
|
-
name: '
|
|
13564
|
-
type: '
|
|
13565
|
-
arrayLength: 6,
|
|
13566
|
-
},
|
|
13567
|
-
{
|
|
13568
|
-
name: 'link_tx_rate',
|
|
13569
|
-
type: 'uint32_t',
|
|
13570
|
-
arrayLength: 6,
|
|
13790
|
+
name: 'time_usec',
|
|
13791
|
+
type: 'uint64_t',
|
|
13571
13792
|
},
|
|
13572
13793
|
{
|
|
13573
|
-
name: '
|
|
13794
|
+
name: 'uptime',
|
|
13574
13795
|
type: 'uint32_t',
|
|
13575
|
-
arrayLength: 6,
|
|
13576
13796
|
},
|
|
13577
13797
|
{
|
|
13578
|
-
name: '
|
|
13798
|
+
name: 'ram_usage',
|
|
13579
13799
|
type: 'uint32_t',
|
|
13580
|
-
arrayLength: 6,
|
|
13581
13800
|
},
|
|
13582
13801
|
{
|
|
13583
|
-
name: '
|
|
13802
|
+
name: 'ram_total',
|
|
13584
13803
|
type: 'uint32_t',
|
|
13585
|
-
arrayLength: 6,
|
|
13586
13804
|
},
|
|
13587
13805
|
{
|
|
13588
13806
|
name: 'storage_type',
|
|
@@ -13600,28 +13818,29 @@ const MESSAGE_DEFINITIONS = [
|
|
|
13600
13818
|
arrayLength: 4,
|
|
13601
13819
|
},
|
|
13602
13820
|
{
|
|
13603
|
-
name: '
|
|
13604
|
-
type: '
|
|
13605
|
-
arrayLength:
|
|
13821
|
+
name: 'link_type',
|
|
13822
|
+
type: 'uint32_t',
|
|
13823
|
+
arrayLength: 6,
|
|
13606
13824
|
},
|
|
13607
13825
|
{
|
|
13608
|
-
name: '
|
|
13609
|
-
type: '
|
|
13610
|
-
arrayLength:
|
|
13826
|
+
name: 'link_tx_rate',
|
|
13827
|
+
type: 'uint32_t',
|
|
13828
|
+
arrayLength: 6,
|
|
13611
13829
|
},
|
|
13612
13830
|
{
|
|
13613
|
-
name: '
|
|
13614
|
-
type: '
|
|
13831
|
+
name: 'link_rx_rate',
|
|
13832
|
+
type: 'uint32_t',
|
|
13833
|
+
arrayLength: 6,
|
|
13615
13834
|
},
|
|
13616
13835
|
{
|
|
13617
|
-
name: '
|
|
13618
|
-
type: '
|
|
13619
|
-
arrayLength:
|
|
13836
|
+
name: 'link_tx_max',
|
|
13837
|
+
type: 'uint32_t',
|
|
13838
|
+
arrayLength: 6,
|
|
13620
13839
|
},
|
|
13621
13840
|
{
|
|
13622
|
-
name: '
|
|
13623
|
-
type: '
|
|
13624
|
-
arrayLength:
|
|
13841
|
+
name: 'link_rx_max',
|
|
13842
|
+
type: 'uint32_t',
|
|
13843
|
+
arrayLength: 6,
|
|
13625
13844
|
},
|
|
13626
13845
|
{
|
|
13627
13846
|
name: 'fan_speed',
|
|
@@ -13629,8 +13848,18 @@ const MESSAGE_DEFINITIONS = [
|
|
|
13629
13848
|
arrayLength: 4,
|
|
13630
13849
|
},
|
|
13631
13850
|
{
|
|
13632
|
-
name: '
|
|
13633
|
-
type: '
|
|
13851
|
+
name: 'type',
|
|
13852
|
+
type: 'uint8_t',
|
|
13853
|
+
},
|
|
13854
|
+
{
|
|
13855
|
+
name: 'cpu_cores',
|
|
13856
|
+
type: 'uint8_t',
|
|
13857
|
+
arrayLength: 8,
|
|
13858
|
+
},
|
|
13859
|
+
{
|
|
13860
|
+
name: 'cpu_combined',
|
|
13861
|
+
type: 'uint8_t',
|
|
13862
|
+
arrayLength: 10,
|
|
13634
13863
|
},
|
|
13635
13864
|
{
|
|
13636
13865
|
name: 'gpu_cores',
|
|
@@ -13638,20 +13867,23 @@ const MESSAGE_DEFINITIONS = [
|
|
|
13638
13867
|
arrayLength: 4,
|
|
13639
13868
|
},
|
|
13640
13869
|
{
|
|
13641
|
-
name: '
|
|
13642
|
-
type: '
|
|
13870
|
+
name: 'gpu_combined',
|
|
13871
|
+
type: 'uint8_t',
|
|
13872
|
+
arrayLength: 10,
|
|
13643
13873
|
},
|
|
13644
13874
|
{
|
|
13645
|
-
name: '
|
|
13646
|
-
type: '
|
|
13875
|
+
name: 'temperature_board',
|
|
13876
|
+
type: 'int8_t',
|
|
13647
13877
|
},
|
|
13648
13878
|
{
|
|
13649
|
-
name: '
|
|
13650
|
-
type: '
|
|
13879
|
+
name: 'temperature_core',
|
|
13880
|
+
type: 'int8_t',
|
|
13881
|
+
arrayLength: 8,
|
|
13651
13882
|
},
|
|
13652
13883
|
{
|
|
13653
|
-
name: '
|
|
13654
|
-
type: '
|
|
13884
|
+
name: 'status_flags',
|
|
13885
|
+
type: 'uint16_t',
|
|
13886
|
+
extension: true,
|
|
13655
13887
|
},
|
|
13656
13888
|
]
|
|
13657
13889
|
},
|
|
@@ -13659,16 +13891,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
13659
13891
|
id: 395,
|
|
13660
13892
|
name: 'COMPONENT_INFORMATION',
|
|
13661
13893
|
fields: [
|
|
13662
|
-
{
|
|
13663
|
-
name: 'general_metadata_uri',
|
|
13664
|
-
type: 'char',
|
|
13665
|
-
arrayLength: 100,
|
|
13666
|
-
},
|
|
13667
|
-
{
|
|
13668
|
-
name: 'peripherals_metadata_uri',
|
|
13669
|
-
type: 'char',
|
|
13670
|
-
arrayLength: 100,
|
|
13671
|
-
},
|
|
13672
13894
|
{
|
|
13673
13895
|
name: 'time_boot_ms',
|
|
13674
13896
|
type: 'uint32_t',
|
|
@@ -13681,6 +13903,16 @@ const MESSAGE_DEFINITIONS = [
|
|
|
13681
13903
|
name: 'peripherals_metadata_file_crc',
|
|
13682
13904
|
type: 'uint32_t',
|
|
13683
13905
|
},
|
|
13906
|
+
{
|
|
13907
|
+
name: 'general_metadata_uri',
|
|
13908
|
+
type: 'char',
|
|
13909
|
+
arrayLength: 100,
|
|
13910
|
+
},
|
|
13911
|
+
{
|
|
13912
|
+
name: 'peripherals_metadata_uri',
|
|
13913
|
+
type: 'char',
|
|
13914
|
+
arrayLength: 100,
|
|
13915
|
+
},
|
|
13684
13916
|
]
|
|
13685
13917
|
},
|
|
13686
13918
|
{
|
|
@@ -13688,17 +13920,24 @@ const MESSAGE_DEFINITIONS = [
|
|
|
13688
13920
|
name: 'COMPONENT_INFORMATION_BASIC',
|
|
13689
13921
|
fields: [
|
|
13690
13922
|
{
|
|
13691
|
-
name: '
|
|
13692
|
-
type: '
|
|
13693
|
-
arrayLength: 32,
|
|
13923
|
+
name: 'capabilities',
|
|
13924
|
+
type: 'uint64_t',
|
|
13694
13925
|
},
|
|
13695
13926
|
{
|
|
13696
|
-
name: '
|
|
13927
|
+
name: 'time_boot_ms',
|
|
13928
|
+
type: 'uint32_t',
|
|
13929
|
+
},
|
|
13930
|
+
{
|
|
13931
|
+
name: 'time_manufacture_s',
|
|
13932
|
+
type: 'uint32_t',
|
|
13933
|
+
},
|
|
13934
|
+
{
|
|
13935
|
+
name: 'vendor_name',
|
|
13697
13936
|
type: 'char',
|
|
13698
13937
|
arrayLength: 32,
|
|
13699
13938
|
},
|
|
13700
13939
|
{
|
|
13701
|
-
name: '
|
|
13940
|
+
name: 'model_name',
|
|
13702
13941
|
type: 'char',
|
|
13703
13942
|
arrayLength: 32,
|
|
13704
13943
|
},
|
|
@@ -13713,16 +13952,9 @@ const MESSAGE_DEFINITIONS = [
|
|
|
13713
13952
|
arrayLength: 24,
|
|
13714
13953
|
},
|
|
13715
13954
|
{
|
|
13716
|
-
name: '
|
|
13717
|
-
type: '
|
|
13718
|
-
|
|
13719
|
-
{
|
|
13720
|
-
name: 'time_boot_ms',
|
|
13721
|
-
type: 'uint32_t',
|
|
13722
|
-
},
|
|
13723
|
-
{
|
|
13724
|
-
name: 'time_manufacture_s',
|
|
13725
|
-
type: 'uint32_t',
|
|
13955
|
+
name: 'serial_number',
|
|
13956
|
+
type: 'char',
|
|
13957
|
+
arrayLength: 32,
|
|
13726
13958
|
},
|
|
13727
13959
|
]
|
|
13728
13960
|
},
|
|
@@ -13730,11 +13962,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
13730
13962
|
id: 397,
|
|
13731
13963
|
name: 'COMPONENT_METADATA',
|
|
13732
13964
|
fields: [
|
|
13733
|
-
{
|
|
13734
|
-
name: 'uri',
|
|
13735
|
-
type: 'char',
|
|
13736
|
-
arrayLength: 100,
|
|
13737
|
-
},
|
|
13738
13965
|
{
|
|
13739
13966
|
name: 'time_boot_ms',
|
|
13740
13967
|
type: 'uint32_t',
|
|
@@ -13743,17 +13970,17 @@ const MESSAGE_DEFINITIONS = [
|
|
|
13743
13970
|
name: 'file_crc',
|
|
13744
13971
|
type: 'uint32_t',
|
|
13745
13972
|
},
|
|
13973
|
+
{
|
|
13974
|
+
name: 'uri',
|
|
13975
|
+
type: 'char',
|
|
13976
|
+
arrayLength: 100,
|
|
13977
|
+
},
|
|
13746
13978
|
]
|
|
13747
13979
|
},
|
|
13748
13980
|
{
|
|
13749
13981
|
id: 400,
|
|
13750
13982
|
name: 'PLAY_TUNE_V2',
|
|
13751
13983
|
fields: [
|
|
13752
|
-
{
|
|
13753
|
-
name: 'tune',
|
|
13754
|
-
type: 'char',
|
|
13755
|
-
arrayLength: 248,
|
|
13756
|
-
},
|
|
13757
13984
|
{
|
|
13758
13985
|
name: 'format',
|
|
13759
13986
|
type: 'uint32_t',
|
|
@@ -13766,6 +13993,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
13766
13993
|
name: 'target_component',
|
|
13767
13994
|
type: 'uint8_t',
|
|
13768
13995
|
},
|
|
13996
|
+
{
|
|
13997
|
+
name: 'tune',
|
|
13998
|
+
type: 'char',
|
|
13999
|
+
arrayLength: 248,
|
|
14000
|
+
},
|
|
13769
14001
|
]
|
|
13770
14002
|
},
|
|
13771
14003
|
{
|
|
@@ -13790,11 +14022,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
13790
14022
|
id: 410,
|
|
13791
14023
|
name: 'EVENT',
|
|
13792
14024
|
fields: [
|
|
13793
|
-
{
|
|
13794
|
-
name: 'arguments',
|
|
13795
|
-
type: 'uint8_t',
|
|
13796
|
-
arrayLength: 40,
|
|
13797
|
-
},
|
|
13798
14025
|
{
|
|
13799
14026
|
name: 'id',
|
|
13800
14027
|
type: 'uint32_t',
|
|
@@ -13819,6 +14046,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
13819
14046
|
name: 'log_levels',
|
|
13820
14047
|
type: 'uint8_t',
|
|
13821
14048
|
},
|
|
14049
|
+
{
|
|
14050
|
+
name: 'arguments',
|
|
14051
|
+
type: 'uint8_t',
|
|
14052
|
+
arrayLength: 40,
|
|
14053
|
+
},
|
|
13822
14054
|
]
|
|
13823
14055
|
},
|
|
13824
14056
|
{
|
|
@@ -13887,11 +14119,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
13887
14119
|
id: 435,
|
|
13888
14120
|
name: 'AVAILABLE_MODES',
|
|
13889
14121
|
fields: [
|
|
13890
|
-
{
|
|
13891
|
-
name: 'mode_name',
|
|
13892
|
-
type: 'char',
|
|
13893
|
-
arrayLength: 35,
|
|
13894
|
-
},
|
|
13895
14122
|
{
|
|
13896
14123
|
name: 'custom_mode',
|
|
13897
14124
|
type: 'uint32_t',
|
|
@@ -13912,6 +14139,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
13912
14139
|
name: 'standard_mode',
|
|
13913
14140
|
type: 'uint8_t',
|
|
13914
14141
|
},
|
|
14142
|
+
{
|
|
14143
|
+
name: 'mode_name',
|
|
14144
|
+
type: 'char',
|
|
14145
|
+
arrayLength: 35,
|
|
14146
|
+
},
|
|
13915
14147
|
]
|
|
13916
14148
|
},
|
|
13917
14149
|
{
|
|
@@ -13996,11 +14228,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
13996
14228
|
id: 387,
|
|
13997
14229
|
name: 'CANFD_FRAME',
|
|
13998
14230
|
fields: [
|
|
13999
|
-
{
|
|
14000
|
-
name: 'data',
|
|
14001
|
-
type: 'uint8_t',
|
|
14002
|
-
arrayLength: 64,
|
|
14003
|
-
},
|
|
14004
14231
|
{
|
|
14005
14232
|
name: 'id',
|
|
14006
14233
|
type: 'uint32_t',
|
|
@@ -14021,6 +14248,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
14021
14248
|
name: 'len',
|
|
14022
14249
|
type: 'uint8_t',
|
|
14023
14250
|
},
|
|
14251
|
+
{
|
|
14252
|
+
name: 'data',
|
|
14253
|
+
type: 'uint8_t',
|
|
14254
|
+
arrayLength: 64,
|
|
14255
|
+
},
|
|
14024
14256
|
]
|
|
14025
14257
|
},
|
|
14026
14258
|
{
|
|
@@ -14058,15 +14290,15 @@ const MESSAGE_DEFINITIONS = [
|
|
|
14058
14290
|
id: 9000,
|
|
14059
14291
|
name: 'WHEEL_DISTANCE',
|
|
14060
14292
|
fields: [
|
|
14293
|
+
{
|
|
14294
|
+
name: 'time_usec',
|
|
14295
|
+
type: 'uint64_t',
|
|
14296
|
+
},
|
|
14061
14297
|
{
|
|
14062
14298
|
name: 'distance',
|
|
14063
14299
|
type: 'double',
|
|
14064
14300
|
arrayLength: 16,
|
|
14065
14301
|
},
|
|
14066
|
-
{
|
|
14067
|
-
name: 'time_usec',
|
|
14068
|
-
type: 'uint64_t',
|
|
14069
|
-
},
|
|
14070
14302
|
{
|
|
14071
14303
|
name: 'count',
|
|
14072
14304
|
type: 'uint8_t',
|
|
@@ -14116,30 +14348,30 @@ const MESSAGE_DEFINITIONS = [
|
|
|
14116
14348
|
name: 'OPEN_DRONE_ID_BASIC_ID',
|
|
14117
14349
|
fields: [
|
|
14118
14350
|
{
|
|
14119
|
-
name: '
|
|
14351
|
+
name: 'target_system',
|
|
14120
14352
|
type: 'uint8_t',
|
|
14121
|
-
arrayLength: 20,
|
|
14122
14353
|
},
|
|
14123
14354
|
{
|
|
14124
|
-
name: '
|
|
14355
|
+
name: 'target_component',
|
|
14125
14356
|
type: 'uint8_t',
|
|
14126
|
-
arrayLength: 20,
|
|
14127
14357
|
},
|
|
14128
14358
|
{
|
|
14129
|
-
name: '
|
|
14359
|
+
name: 'id_or_mac',
|
|
14130
14360
|
type: 'uint8_t',
|
|
14361
|
+
arrayLength: 20,
|
|
14131
14362
|
},
|
|
14132
14363
|
{
|
|
14133
|
-
name: '
|
|
14364
|
+
name: 'id_type',
|
|
14134
14365
|
type: 'uint8_t',
|
|
14135
14366
|
},
|
|
14136
14367
|
{
|
|
14137
|
-
name: '
|
|
14368
|
+
name: 'ua_type',
|
|
14138
14369
|
type: 'uint8_t',
|
|
14139
14370
|
},
|
|
14140
14371
|
{
|
|
14141
|
-
name: '
|
|
14372
|
+
name: 'uas_id',
|
|
14142
14373
|
type: 'uint8_t',
|
|
14374
|
+
arrayLength: 20,
|
|
14143
14375
|
},
|
|
14144
14376
|
]
|
|
14145
14377
|
},
|
|
@@ -14147,11 +14379,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
14147
14379
|
id: 12901,
|
|
14148
14380
|
name: 'OPEN_DRONE_ID_LOCATION',
|
|
14149
14381
|
fields: [
|
|
14150
|
-
{
|
|
14151
|
-
name: 'id_or_mac',
|
|
14152
|
-
type: 'uint8_t',
|
|
14153
|
-
arrayLength: 20,
|
|
14154
|
-
},
|
|
14155
14382
|
{
|
|
14156
14383
|
name: 'latitude',
|
|
14157
14384
|
type: 'int32_t',
|
|
@@ -14196,6 +14423,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
14196
14423
|
name: 'target_component',
|
|
14197
14424
|
type: 'uint8_t',
|
|
14198
14425
|
},
|
|
14426
|
+
{
|
|
14427
|
+
name: 'id_or_mac',
|
|
14428
|
+
type: 'uint8_t',
|
|
14429
|
+
arrayLength: 20,
|
|
14430
|
+
},
|
|
14199
14431
|
{
|
|
14200
14432
|
name: 'status',
|
|
14201
14433
|
type: 'uint8_t',
|
|
@@ -14230,16 +14462,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
14230
14462
|
id: 12902,
|
|
14231
14463
|
name: 'OPEN_DRONE_ID_AUTHENTICATION',
|
|
14232
14464
|
fields: [
|
|
14233
|
-
{
|
|
14234
|
-
name: 'authentication_data',
|
|
14235
|
-
type: 'uint8_t',
|
|
14236
|
-
arrayLength: 23,
|
|
14237
|
-
},
|
|
14238
|
-
{
|
|
14239
|
-
name: 'id_or_mac',
|
|
14240
|
-
type: 'uint8_t',
|
|
14241
|
-
arrayLength: 20,
|
|
14242
|
-
},
|
|
14243
14465
|
{
|
|
14244
14466
|
name: 'timestamp',
|
|
14245
14467
|
type: 'uint32_t',
|
|
@@ -14252,6 +14474,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
14252
14474
|
name: 'target_component',
|
|
14253
14475
|
type: 'uint8_t',
|
|
14254
14476
|
},
|
|
14477
|
+
{
|
|
14478
|
+
name: 'id_or_mac',
|
|
14479
|
+
type: 'uint8_t',
|
|
14480
|
+
arrayLength: 20,
|
|
14481
|
+
},
|
|
14255
14482
|
{
|
|
14256
14483
|
name: 'authentication_type',
|
|
14257
14484
|
type: 'uint8_t',
|
|
@@ -14268,6 +14495,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
14268
14495
|
name: 'length',
|
|
14269
14496
|
type: 'uint8_t',
|
|
14270
14497
|
},
|
|
14498
|
+
{
|
|
14499
|
+
name: 'authentication_data',
|
|
14500
|
+
type: 'uint8_t',
|
|
14501
|
+
arrayLength: 23,
|
|
14502
|
+
},
|
|
14271
14503
|
]
|
|
14272
14504
|
},
|
|
14273
14505
|
{
|
|
@@ -14275,38 +14507,33 @@ const MESSAGE_DEFINITIONS = [
|
|
|
14275
14507
|
name: 'OPEN_DRONE_ID_SELF_ID',
|
|
14276
14508
|
fields: [
|
|
14277
14509
|
{
|
|
14278
|
-
name: '
|
|
14279
|
-
type: 'char',
|
|
14280
|
-
arrayLength: 23,
|
|
14281
|
-
},
|
|
14282
|
-
{
|
|
14283
|
-
name: 'id_or_mac',
|
|
14510
|
+
name: 'target_system',
|
|
14284
14511
|
type: 'uint8_t',
|
|
14285
|
-
arrayLength: 20,
|
|
14286
14512
|
},
|
|
14287
14513
|
{
|
|
14288
|
-
name: '
|
|
14514
|
+
name: 'target_component',
|
|
14289
14515
|
type: 'uint8_t',
|
|
14290
14516
|
},
|
|
14291
14517
|
{
|
|
14292
|
-
name: '
|
|
14518
|
+
name: 'id_or_mac',
|
|
14293
14519
|
type: 'uint8_t',
|
|
14520
|
+
arrayLength: 20,
|
|
14294
14521
|
},
|
|
14295
14522
|
{
|
|
14296
14523
|
name: 'description_type',
|
|
14297
14524
|
type: 'uint8_t',
|
|
14298
14525
|
},
|
|
14526
|
+
{
|
|
14527
|
+
name: 'description',
|
|
14528
|
+
type: 'char',
|
|
14529
|
+
arrayLength: 23,
|
|
14530
|
+
},
|
|
14299
14531
|
]
|
|
14300
14532
|
},
|
|
14301
14533
|
{
|
|
14302
14534
|
id: 12904,
|
|
14303
14535
|
name: 'OPEN_DRONE_ID_SYSTEM',
|
|
14304
14536
|
fields: [
|
|
14305
|
-
{
|
|
14306
|
-
name: 'id_or_mac',
|
|
14307
|
-
type: 'uint8_t',
|
|
14308
|
-
arrayLength: 20,
|
|
14309
|
-
},
|
|
14310
14537
|
{
|
|
14311
14538
|
name: 'operator_latitude',
|
|
14312
14539
|
type: 'int32_t',
|
|
@@ -14347,6 +14574,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
14347
14574
|
name: 'target_component',
|
|
14348
14575
|
type: 'uint8_t',
|
|
14349
14576
|
},
|
|
14577
|
+
{
|
|
14578
|
+
name: 'id_or_mac',
|
|
14579
|
+
type: 'uint8_t',
|
|
14580
|
+
arrayLength: 20,
|
|
14581
|
+
},
|
|
14350
14582
|
{
|
|
14351
14583
|
name: 'operator_location_type',
|
|
14352
14584
|
type: 'uint8_t',
|
|
@@ -14370,27 +14602,27 @@ const MESSAGE_DEFINITIONS = [
|
|
|
14370
14602
|
name: 'OPEN_DRONE_ID_OPERATOR_ID',
|
|
14371
14603
|
fields: [
|
|
14372
14604
|
{
|
|
14373
|
-
name: '
|
|
14605
|
+
name: 'target_system',
|
|
14374
14606
|
type: 'uint8_t',
|
|
14375
|
-
arrayLength: 20,
|
|
14376
|
-
},
|
|
14377
|
-
{
|
|
14378
|
-
name: 'operator_id',
|
|
14379
|
-
type: 'char',
|
|
14380
|
-
arrayLength: 20,
|
|
14381
14607
|
},
|
|
14382
14608
|
{
|
|
14383
|
-
name: '
|
|
14609
|
+
name: 'target_component',
|
|
14384
14610
|
type: 'uint8_t',
|
|
14385
14611
|
},
|
|
14386
14612
|
{
|
|
14387
|
-
name: '
|
|
14613
|
+
name: 'id_or_mac',
|
|
14388
14614
|
type: 'uint8_t',
|
|
14615
|
+
arrayLength: 20,
|
|
14389
14616
|
},
|
|
14390
14617
|
{
|
|
14391
14618
|
name: 'operator_id_type',
|
|
14392
14619
|
type: 'uint8_t',
|
|
14393
14620
|
},
|
|
14621
|
+
{
|
|
14622
|
+
name: 'operator_id',
|
|
14623
|
+
type: 'char',
|
|
14624
|
+
arrayLength: 20,
|
|
14625
|
+
},
|
|
14394
14626
|
]
|
|
14395
14627
|
},
|
|
14396
14628
|
{
|
|
@@ -14398,30 +14630,30 @@ const MESSAGE_DEFINITIONS = [
|
|
|
14398
14630
|
name: 'OPEN_DRONE_ID_MESSAGE_PACK',
|
|
14399
14631
|
fields: [
|
|
14400
14632
|
{
|
|
14401
|
-
name: '
|
|
14633
|
+
name: 'target_system',
|
|
14402
14634
|
type: 'uint8_t',
|
|
14403
|
-
arrayLength: 225,
|
|
14404
14635
|
},
|
|
14405
14636
|
{
|
|
14406
|
-
name: '
|
|
14637
|
+
name: 'target_component',
|
|
14407
14638
|
type: 'uint8_t',
|
|
14408
|
-
arrayLength: 20,
|
|
14409
14639
|
},
|
|
14410
14640
|
{
|
|
14411
|
-
name: '
|
|
14641
|
+
name: 'id_or_mac',
|
|
14412
14642
|
type: 'uint8_t',
|
|
14643
|
+
arrayLength: 20,
|
|
14413
14644
|
},
|
|
14414
14645
|
{
|
|
14415
|
-
name: '
|
|
14646
|
+
name: 'single_message_size',
|
|
14416
14647
|
type: 'uint8_t',
|
|
14417
14648
|
},
|
|
14418
14649
|
{
|
|
14419
|
-
name: '
|
|
14650
|
+
name: 'msg_pack_size',
|
|
14420
14651
|
type: 'uint8_t',
|
|
14421
14652
|
},
|
|
14422
14653
|
{
|
|
14423
|
-
name: '
|
|
14654
|
+
name: 'messages',
|
|
14424
14655
|
type: 'uint8_t',
|
|
14656
|
+
arrayLength: 225,
|
|
14425
14657
|
},
|
|
14426
14658
|
]
|
|
14427
14659
|
},
|
|
@@ -14429,15 +14661,15 @@ const MESSAGE_DEFINITIONS = [
|
|
|
14429
14661
|
id: 12918,
|
|
14430
14662
|
name: 'OPEN_DRONE_ID_ARM_STATUS',
|
|
14431
14663
|
fields: [
|
|
14664
|
+
{
|
|
14665
|
+
name: 'status',
|
|
14666
|
+
type: 'uint8_t',
|
|
14667
|
+
},
|
|
14432
14668
|
{
|
|
14433
14669
|
name: 'error',
|
|
14434
14670
|
type: 'char',
|
|
14435
14671
|
arrayLength: 50,
|
|
14436
14672
|
},
|
|
14437
|
-
{
|
|
14438
|
-
name: 'status',
|
|
14439
|
-
type: 'uint8_t',
|
|
14440
|
-
},
|
|
14441
14673
|
]
|
|
14442
14674
|
},
|
|
14443
14675
|
{
|
|
@@ -14492,11 +14724,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
14492
14724
|
id: 180,
|
|
14493
14725
|
name: 'SCRIPT_ITEM',
|
|
14494
14726
|
fields: [
|
|
14495
|
-
{
|
|
14496
|
-
name: 'name',
|
|
14497
|
-
type: 'char',
|
|
14498
|
-
arrayLength: 50,
|
|
14499
|
-
},
|
|
14500
14727
|
{
|
|
14501
14728
|
name: 'seq',
|
|
14502
14729
|
type: 'uint16_t',
|
|
@@ -14509,6 +14736,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
14509
14736
|
name: 'target_component',
|
|
14510
14737
|
type: 'uint8_t',
|
|
14511
14738
|
},
|
|
14739
|
+
{
|
|
14740
|
+
name: 'name',
|
|
14741
|
+
type: 'char',
|
|
14742
|
+
arrayLength: 50,
|
|
14743
|
+
},
|
|
14512
14744
|
]
|
|
14513
14745
|
},
|
|
14514
14746
|
{
|
|
@@ -14628,5 +14860,5 @@ class PaparazziSerializer {
|
|
|
14628
14860
|
}
|
|
14629
14861
|
}
|
|
14630
14862
|
|
|
14631
|
-
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, PaparazziParser, PaparazziSerializer, RC_SUB_TYPEEnum, RC_TYPEEnum, REBOOT_SHUTDOWN_CONDITIONSEnum, RTK_BASELINE_COORDINATE_SYSTEMEnum, SAFETY_SWITCH_STATEEnum, SERIAL_CONTROL_DEVEnum, SERIAL_CONTROL_FLAGEnum, SET_FOCUS_TYPEEnum, SPEED_TYPEEnum, STORAGE_STATUSEnum, STORAGE_TYPEEnum, STORAGE_USAGE_FLAGEnum, TUNE_FORMATEnum, UAVCAN_NODE_HEALTHEnum, UAVCAN_NODE_MODEEnum, UTM_DATA_AVAIL_FLAGSEnum, UTM_FLIGHT_STATEEnum, VIDEO_STREAM_ENCODINGEnum, VIDEO_STREAM_STATUS_FLAGSEnum, VIDEO_STREAM_TYPEEnum, VTOL_TRANSITION_HEADINGEnum, WIFI_CONFIG_AP_MODEEnum, WIFI_CONFIG_AP_RESPONSEEnum, WINCH_ACTIONSEnum, isActuatorControlTarget, isActuatorOutputStatus, isAdsbVehicle, isAisVessel, isAltitude, isAttPosMocap, isAttitude, isAttitudeQuaternion, isAttitudeQuaternionCov, isAttitudeTarget, isAuthKey, isAutopilotStateForGimbalDevice, isAutopilotVersion, isAvailableModes, isAvailableModesMonitor, isBatteryInfo, isBatteryStatus, isButtonChange, isCameraCaptureStatus, isCameraFovStatus, isCameraImageCaptured, isCameraInformation, isCameraSettings, isCameraThermalRange, isCameraTrackingGeoStatus, isCameraTrackingImageStatus, isCameraTrigger, isCanFilterModify, isCanFrame, isCanfdFrame, isCellularConfig, isCellularStatus, isChangeOperatorControl, isChangeOperatorControlAck, isCollision, isCommandAck, isCommandCancel, isCommandInt, isCommandLong, isComponentInformation, isComponentInformationBasic, isComponentMetadata, isControlSystemState, isCurrentEventSequence, isCurrentMode, isDataStream, isDataTransmissionHandshake, isDebug, isDebugFloatArray, isDebugVect, isDistanceSensor, isEfiStatus, isEncapsulatedData, isEscInfo, isEscStatus, isEstimatorStatus, isEvent, isExtendedSysState, isFenceStatus, isFileTransferProtocol, isFlightInformation, isFollowTarget, isFuelStatus, isGeneratorStatus, isGimbalDeviceAttitudeStatus, isGimbalDeviceInformation, isGimbalDeviceSetAttitude, isGimbalManagerInformation, isGimbalManagerSetAttitude, isGimbalManagerSetManualControl, isGimbalManagerSetPitchyaw, isGimbalManagerStatus, isGlobalPositionInt, isGlobalPositionIntCov, isGlobalVisionPositionEstimate, isGps2Raw, isGps2Rtk, isGpsGlobalOrigin, isGpsInjectData, isGpsInput, isGpsRawInt, isGpsRtcmData, isGpsRtk, isGpsStatus, isHeartbeat, isHighLatency, isHighLatency2, isHighresImu, isHilActuatorControls, isHilControls, isHilGps, isHilOpticalFlow, isHilRcInputsRaw, isHilSensor, isHilState, isHilStateQuaternion, isHomePosition, isHygrometerSensor, isIlluminatorStatus, isIsbdLinkStatus, isLandingTarget, isLinkNodeStatus, isLocalPositionNed, isLocalPositionNedCov, isLocalPositionNedSystemGlobalOffset, isLogData, isLogEntry, isLogErase, isLogRequestData, isLogRequestEnd, isLogRequestList, isLoggingAck, isLoggingData, isLoggingDataAcked, isMagCalReport, isManualControl, isManualSetpoint, isMemoryVect, isMessageInterval, isMissionAck, isMissionClearAll, isMissionCount, isMissionCurrent, isMissionItem, isMissionItemInt, isMissionItemReached, isMissionRequest, isMissionRequestInt, isMissionRequestList, isMissionRequestPartialList, isMissionSetCurrent, isMissionWritePartialList, isMountOrientation, isNamedValueFloat, isNamedValueInt, isNavControllerOutput, isObstacleDistance, isOdometry, isOnboardComputerStatus, isOpenDroneIdArmStatus, isOpenDroneIdAuthentication, isOpenDroneIdBasicId, isOpenDroneIdLocation, isOpenDroneIdMessagePack, isOpenDroneIdOperatorId, isOpenDroneIdSelfId, isOpenDroneIdSystem, isOpenDroneIdSystemUpdate, isOpticalFlow, isOpticalFlowRad, isOrbitExecutionStatus, isParamExtAck, isParamExtRequestList, isParamExtRequestRead, isParamExtSet, isParamExtValue, isParamMapRc, isParamRequestList, isParamRequestRead, isParamSet, isParamValue, isPing, isPlayTune, isPlayTuneV2, isPositionTargetGlobalInt, isPositionTargetLocalNed, isPowerStatus, isProtocolVersion, isRadioStatus, isRawImu, isRawPressure, isRawRpm, isRcChannels, isRcChannelsOverride, isRcChannelsRaw, isRcChannelsScaled, isRequestDataStream, isRequestEvent, isResourceRequest, isResponseEventError, isSafetyAllowedArea, isSafetySetAllowedArea, isScaledImu, isScaledImu2, isScaledImu3, isScaledPressure, isScaledPressure2, isScaledPressure3, isScriptCount, isScriptCurrent, isScriptItem, isScriptRequest, isScriptRequestList, 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 };
|
|
14863
|
+
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, PaparazziParser, PaparazziSerializer, RC_SUB_TYPEEnum, RC_TYPEEnum, REBOOT_SHUTDOWN_ACTIONEnum, REBOOT_SHUTDOWN_CONDITIONSEnum, RTK_BASELINE_COORDINATE_SYSTEMEnum, SAFETY_SWITCH_STATEEnum, SERIAL_CONTROL_DEVEnum, SERIAL_CONTROL_FLAGEnum, SET_FOCUS_TYPEEnum, SPEED_TYPEEnum, STORAGE_STATUSEnum, STORAGE_TYPEEnum, STORAGE_USAGE_FLAGEnum, TUNE_FORMATEnum, UAVCAN_NODE_HEALTHEnum, UAVCAN_NODE_MODEEnum, UTM_DATA_AVAIL_FLAGSEnum, UTM_FLIGHT_STATEEnum, VIDEO_STREAM_ENCODINGEnum, VIDEO_STREAM_STATUS_FLAGSEnum, VIDEO_STREAM_TYPEEnum, VTOL_TRANSITION_HEADINGEnum, WIFI_CONFIG_AP_MODEEnum, WIFI_CONFIG_AP_RESPONSEEnum, WINCH_ACTIONSEnum, isActuatorControlTarget, isActuatorOutputStatus, isAdsbVehicle, isAirspeed, isAisVessel, isAltitude, isAttPosMocap, isAttitude, isAttitudeQuaternion, isAttitudeQuaternionCov, isAttitudeTarget, isAuthKey, isAutopilotStateForGimbalDevice, isAutopilotVersion, isAvailableModes, isAvailableModesMonitor, isBatteryInfo, isBatteryStatus, isButtonChange, isCameraCaptureStatus, isCameraFovStatus, isCameraImageCaptured, isCameraInformation, isCameraSettings, isCameraThermalRange, isCameraTrackingGeoStatus, isCameraTrackingImageStatus, isCameraTrigger, isCanFilterModify, isCanFrame, isCanfdFrame, isCellularConfig, isCellularStatus, isChangeOperatorControl, isChangeOperatorControlAck, isCollision, isCommandAck, isCommandCancel, isCommandInt, isCommandLong, isComponentInformation, isComponentInformationBasic, isComponentMetadata, isControlSystemState, isCurrentEventSequence, isCurrentMode, isDataStream, isDataTransmissionHandshake, isDebug, isDebugFloatArray, isDebugVect, isDistanceSensor, isEfiStatus, isEncapsulatedData, isEscInfo, isEscStatus, isEstimatorStatus, isEvent, isExtendedSysState, isFenceStatus, isFigureEightExecutionStatus, isFileTransferProtocol, isFlightInformation, isFollowTarget, isFuelStatus, isGeneratorStatus, isGimbalDeviceAttitudeStatus, isGimbalDeviceInformation, isGimbalDeviceSetAttitude, isGimbalManagerInformation, isGimbalManagerSetAttitude, isGimbalManagerSetManualControl, isGimbalManagerSetPitchyaw, isGimbalManagerStatus, isGlobalPositionInt, isGlobalPositionIntCov, isGlobalVisionPositionEstimate, isGps2Raw, isGps2Rtk, isGpsGlobalOrigin, isGpsInjectData, isGpsInput, isGpsRawInt, isGpsRtcmData, isGpsRtk, isGpsStatus, isHeartbeat, isHighLatency, isHighLatency2, isHighresImu, isHilActuatorControls, isHilControls, isHilGps, isHilOpticalFlow, isHilRcInputsRaw, isHilSensor, isHilState, isHilStateQuaternion, isHomePosition, isHygrometerSensor, isIlluminatorStatus, isIsbdLinkStatus, isLandingTarget, isLinkNodeStatus, isLocalPositionNed, isLocalPositionNedCov, isLocalPositionNedSystemGlobalOffset, isLogData, isLogEntry, isLogErase, isLogRequestData, isLogRequestEnd, isLogRequestList, isLoggingAck, isLoggingData, isLoggingDataAcked, isMagCalReport, isManualControl, isManualSetpoint, isMemoryVect, isMessageInterval, isMissionAck, isMissionClearAll, isMissionCount, isMissionCurrent, isMissionItem, isMissionItemInt, isMissionItemReached, isMissionRequest, isMissionRequestInt, isMissionRequestList, isMissionRequestPartialList, isMissionSetCurrent, isMissionWritePartialList, isMountOrientation, isNamedValueFloat, isNamedValueInt, isNavControllerOutput, isObstacleDistance, isOdometry, isOnboardComputerStatus, isOpenDroneIdArmStatus, isOpenDroneIdAuthentication, isOpenDroneIdBasicId, isOpenDroneIdLocation, isOpenDroneIdMessagePack, isOpenDroneIdOperatorId, isOpenDroneIdSelfId, isOpenDroneIdSystem, isOpenDroneIdSystemUpdate, isOpticalFlow, isOpticalFlowRad, isOrbitExecutionStatus, isParamError, isParamExtAck, isParamExtRequestList, isParamExtRequestRead, isParamExtSet, isParamExtValue, isParamMapRc, isParamRequestList, isParamRequestRead, isParamSet, isParamValue, isPing, isPlayTune, isPlayTuneV2, isPositionTargetGlobalInt, isPositionTargetLocalNed, isPowerStatus, isProtocolVersion, isRadioStatus, isRawImu, isRawPressure, isRawRpm, isRcChannels, isRcChannelsOverride, isRcChannelsRaw, isRcChannelsScaled, isRequestDataStream, isRequestEvent, isResourceRequest, isResponseEventError, isSafetyAllowedArea, isSafetySetAllowedArea, isScaledImu, isScaledImu2, isScaledImu3, isScaledPressure, isScaledPressure2, isScaledPressure3, isScriptCount, isScriptCurrent, isScriptItem, isScriptRequest, isScriptRequestList, 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 };
|
|
14632
14864
|
//# sourceMappingURL=index.js.map
|