@aircast-4g/mavlink 1.1.11 → 1.1.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/dialects/ardupilotmega/index.d.ts +336 -245
- package/dist/dialects/ardupilotmega/index.js +1155 -897
- package/dist/dialects/ardupilotmega/index.js.map +1 -1
- package/dist/dialects/common/index.d.ts +302 -221
- package/dist/dialects/common/index.js +1019 -787
- package/dist/dialects/common/index.js.map +1 -1
- package/dist/dialects/minimal/index.d.ts +9 -14
- package/dist/dialects/minimal/index.js +59 -39
- package/dist/dialects/minimal/index.js.map +1 -1
- package/dist/dialects/paparazzi/index.d.ts +303 -222
- package/dist/dialects/paparazzi/index.js +1022 -790
- package/dist/dialects/paparazzi/index.js.map +1 -1
- package/dist/dialects/python_array_test/index.d.ts +308 -227
- package/dist/dialects/python_array_test/index.js +1038 -806
- package/dist/dialects/python_array_test/index.js.map +1 -1
- package/dist/dialects/standard/index.d.ts +72 -12
- package/dist/dialects/standard/index.js +213 -20
- package/dist/dialects/standard/index.js.map +1 -1
- package/dist/dialects/test/index.d.ts +13 -11
- package/dist/dialects/test/index.js +88 -44
- package/dist/dialects/test/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -148,6 +148,8 @@ var MAV_TYPEEnum;
|
|
|
148
148
|
MAV_TYPEEnum[MAV_TYPEEnum["MAV_TYPE_VTOL_GYRODYNE"] = 47] = "MAV_TYPE_VTOL_GYRODYNE";
|
|
149
149
|
// Gripper
|
|
150
150
|
MAV_TYPEEnum[MAV_TYPEEnum["MAV_TYPE_GRIPPER"] = 48] = "MAV_TYPE_GRIPPER";
|
|
151
|
+
// Radio
|
|
152
|
+
MAV_TYPEEnum[MAV_TYPEEnum["MAV_TYPE_RADIO"] = 49] = "MAV_TYPE_RADIO";
|
|
151
153
|
})(MAV_TYPEEnum || (MAV_TYPEEnum = {}));
|
|
152
154
|
// These flags encode the MAV mode, see MAV_MODE enum for useful combinations.
|
|
153
155
|
var MAV_MODE_FLAGEnum;
|
|
@@ -386,6 +388,12 @@ var MAV_COMPONENTEnum;
|
|
|
386
388
|
MAV_COMPONENTEnum[MAV_COMPONENTEnum["MAV_COMP_ID_CAMERA5"] = 104] = "MAV_COMP_ID_CAMERA5";
|
|
387
389
|
// Camera #6.
|
|
388
390
|
MAV_COMPONENTEnum[MAV_COMPONENTEnum["MAV_COMP_ID_CAMERA6"] = 105] = "MAV_COMP_ID_CAMERA6";
|
|
391
|
+
// Radio #1.
|
|
392
|
+
MAV_COMPONENTEnum[MAV_COMPONENTEnum["MAV_COMP_ID_RADIO"] = 110] = "MAV_COMP_ID_RADIO";
|
|
393
|
+
// Radio #2.
|
|
394
|
+
MAV_COMPONENTEnum[MAV_COMPONENTEnum["MAV_COMP_ID_RADIO2"] = 111] = "MAV_COMP_ID_RADIO2";
|
|
395
|
+
// Radio #3.
|
|
396
|
+
MAV_COMPONENTEnum[MAV_COMPONENTEnum["MAV_COMP_ID_RADIO3"] = 112] = "MAV_COMP_ID_RADIO3";
|
|
389
397
|
// Servo #1.
|
|
390
398
|
MAV_COMPONENTEnum[MAV_COMPONENTEnum["MAV_COMP_ID_SERVO1"] = 140] = "MAV_COMP_ID_SERVO1";
|
|
391
399
|
// Servo #2.
|
|
@@ -501,6 +509,56 @@ var MAV_BOOLEnum;
|
|
|
501
509
|
// True.
|
|
502
510
|
MAV_BOOLEnum[MAV_BOOLEnum["MAV_BOOL_TRUE"] = 1] = "MAV_BOOL_TRUE";
|
|
503
511
|
})(MAV_BOOLEnum || (MAV_BOOLEnum = {}));
|
|
512
|
+
// Bitmask of (optional) autopilot capabilities (64 bit). If a bit is set, the autopilot supports this capability.
|
|
513
|
+
var MAV_PROTOCOL_CAPABILITYEnum;
|
|
514
|
+
(function (MAV_PROTOCOL_CAPABILITYEnum) {
|
|
515
|
+
// Autopilot supports the MISSION_ITEM float message type.
|
|
516
|
+
// Note that MISSION_ITEM is deprecated, and autopilots should use MISSION_ITEM_INT instead.
|
|
517
|
+
MAV_PROTOCOL_CAPABILITYEnum[MAV_PROTOCOL_CAPABILITYEnum["MAV_PROTOCOL_CAPABILITY_MISSION_FLOAT"] = 1] = "MAV_PROTOCOL_CAPABILITY_MISSION_FLOAT";
|
|
518
|
+
// Autopilot supports the new param float message type.
|
|
519
|
+
MAV_PROTOCOL_CAPABILITYEnum[MAV_PROTOCOL_CAPABILITYEnum["MAV_PROTOCOL_CAPABILITY_PARAM_FLOAT"] = 2] = "MAV_PROTOCOL_CAPABILITY_PARAM_FLOAT";
|
|
520
|
+
// Autopilot supports MISSION_ITEM_INT scaled integer message type.
|
|
521
|
+
// Note that this flag must always be set if missions are supported, because missions must always use MISSION_ITEM_INT (rather than MISSION_ITEM, which is deprecated).
|
|
522
|
+
MAV_PROTOCOL_CAPABILITYEnum[MAV_PROTOCOL_CAPABILITYEnum["MAV_PROTOCOL_CAPABILITY_MISSION_INT"] = 4] = "MAV_PROTOCOL_CAPABILITY_MISSION_INT";
|
|
523
|
+
// Autopilot supports COMMAND_INT scaled integer message type.
|
|
524
|
+
MAV_PROTOCOL_CAPABILITYEnum[MAV_PROTOCOL_CAPABILITYEnum["MAV_PROTOCOL_CAPABILITY_COMMAND_INT"] = 8] = "MAV_PROTOCOL_CAPABILITY_COMMAND_INT";
|
|
525
|
+
// Parameter protocol uses byte-wise encoding of parameter values into param_value (float) fields: https://mavlink.io/en/services/parameter.html#parameter-encoding.
|
|
526
|
+
// Note that either this flag or MAV_PROTOCOL_CAPABILITY_PARAM_ENCODE_C_CAST should be set if the parameter protocol is supported.
|
|
527
|
+
MAV_PROTOCOL_CAPABILITYEnum[MAV_PROTOCOL_CAPABILITYEnum["MAV_PROTOCOL_CAPABILITY_PARAM_ENCODE_BYTEWISE"] = 16] = "MAV_PROTOCOL_CAPABILITY_PARAM_ENCODE_BYTEWISE";
|
|
528
|
+
// Autopilot supports the File Transfer Protocol v1: https://mavlink.io/en/services/ftp.html.
|
|
529
|
+
MAV_PROTOCOL_CAPABILITYEnum[MAV_PROTOCOL_CAPABILITYEnum["MAV_PROTOCOL_CAPABILITY_FTP"] = 32] = "MAV_PROTOCOL_CAPABILITY_FTP";
|
|
530
|
+
// Autopilot supports commanding attitude offboard.
|
|
531
|
+
MAV_PROTOCOL_CAPABILITYEnum[MAV_PROTOCOL_CAPABILITYEnum["MAV_PROTOCOL_CAPABILITY_SET_ATTITUDE_TARGET"] = 64] = "MAV_PROTOCOL_CAPABILITY_SET_ATTITUDE_TARGET";
|
|
532
|
+
// Autopilot supports commanding position and velocity targets in local NED frame.
|
|
533
|
+
MAV_PROTOCOL_CAPABILITYEnum[MAV_PROTOCOL_CAPABILITYEnum["MAV_PROTOCOL_CAPABILITY_SET_POSITION_TARGET_LOCAL_NED"] = 128] = "MAV_PROTOCOL_CAPABILITY_SET_POSITION_TARGET_LOCAL_NED";
|
|
534
|
+
// Autopilot supports commanding position and velocity targets in global scaled integers.
|
|
535
|
+
MAV_PROTOCOL_CAPABILITYEnum[MAV_PROTOCOL_CAPABILITYEnum["MAV_PROTOCOL_CAPABILITY_SET_POSITION_TARGET_GLOBAL_INT"] = 256] = "MAV_PROTOCOL_CAPABILITY_SET_POSITION_TARGET_GLOBAL_INT";
|
|
536
|
+
// Autopilot supports terrain protocol / data handling.
|
|
537
|
+
MAV_PROTOCOL_CAPABILITYEnum[MAV_PROTOCOL_CAPABILITYEnum["MAV_PROTOCOL_CAPABILITY_TERRAIN"] = 512] = "MAV_PROTOCOL_CAPABILITY_TERRAIN";
|
|
538
|
+
// Reserved for future use.
|
|
539
|
+
MAV_PROTOCOL_CAPABILITYEnum[MAV_PROTOCOL_CAPABILITYEnum["MAV_PROTOCOL_CAPABILITY_RESERVED3"] = 1024] = "MAV_PROTOCOL_CAPABILITY_RESERVED3";
|
|
540
|
+
// Autopilot supports the MAV_CMD_DO_FLIGHTTERMINATION command (flight termination).
|
|
541
|
+
MAV_PROTOCOL_CAPABILITYEnum[MAV_PROTOCOL_CAPABILITYEnum["MAV_PROTOCOL_CAPABILITY_FLIGHT_TERMINATION"] = 2048] = "MAV_PROTOCOL_CAPABILITY_FLIGHT_TERMINATION";
|
|
542
|
+
// Autopilot supports onboard compass calibration.
|
|
543
|
+
MAV_PROTOCOL_CAPABILITYEnum[MAV_PROTOCOL_CAPABILITYEnum["MAV_PROTOCOL_CAPABILITY_COMPASS_CALIBRATION"] = 4096] = "MAV_PROTOCOL_CAPABILITY_COMPASS_CALIBRATION";
|
|
544
|
+
// Autopilot supports MAVLink version 2.
|
|
545
|
+
MAV_PROTOCOL_CAPABILITYEnum[MAV_PROTOCOL_CAPABILITYEnum["MAV_PROTOCOL_CAPABILITY_MAVLINK2"] = 8192] = "MAV_PROTOCOL_CAPABILITY_MAVLINK2";
|
|
546
|
+
// Autopilot supports mission fence protocol.
|
|
547
|
+
MAV_PROTOCOL_CAPABILITYEnum[MAV_PROTOCOL_CAPABILITYEnum["MAV_PROTOCOL_CAPABILITY_MISSION_FENCE"] = 16384] = "MAV_PROTOCOL_CAPABILITY_MISSION_FENCE";
|
|
548
|
+
// Autopilot supports mission rally point protocol.
|
|
549
|
+
MAV_PROTOCOL_CAPABILITYEnum[MAV_PROTOCOL_CAPABILITYEnum["MAV_PROTOCOL_CAPABILITY_MISSION_RALLY"] = 32768] = "MAV_PROTOCOL_CAPABILITY_MISSION_RALLY";
|
|
550
|
+
// Reserved for future use.
|
|
551
|
+
MAV_PROTOCOL_CAPABILITYEnum[MAV_PROTOCOL_CAPABILITYEnum["MAV_PROTOCOL_CAPABILITY_RESERVED2"] = 65536] = "MAV_PROTOCOL_CAPABILITY_RESERVED2";
|
|
552
|
+
// Parameter protocol uses C-cast of parameter values to set the param_value (float) fields: https://mavlink.io/en/services/parameter.html#parameter-encoding.
|
|
553
|
+
// Note that either this flag or MAV_PROTOCOL_CAPABILITY_PARAM_ENCODE_BYTEWISE should be set if the parameter protocol is supported.
|
|
554
|
+
MAV_PROTOCOL_CAPABILITYEnum[MAV_PROTOCOL_CAPABILITYEnum["MAV_PROTOCOL_CAPABILITY_PARAM_ENCODE_C_CAST"] = 131072] = "MAV_PROTOCOL_CAPABILITY_PARAM_ENCODE_C_CAST";
|
|
555
|
+
// This component implements/is a gimbal manager. This means the GIMBAL_MANAGER_INFORMATION, and other messages can be requested.
|
|
556
|
+
MAV_PROTOCOL_CAPABILITYEnum[MAV_PROTOCOL_CAPABILITYEnum["MAV_PROTOCOL_CAPABILITY_COMPONENT_IMPLEMENTS_GIMBAL_MANAGER"] = 262144] = "MAV_PROTOCOL_CAPABILITY_COMPONENT_IMPLEMENTS_GIMBAL_MANAGER";
|
|
557
|
+
// Component supports locking control to a particular GCS independent of its system (via MAV_CMD_REQUEST_OPERATOR_CONTROL).
|
|
558
|
+
MAV_PROTOCOL_CAPABILITYEnum[MAV_PROTOCOL_CAPABILITYEnum["MAV_PROTOCOL_CAPABILITY_COMPONENT_ACCEPTS_GCS_CONTROL"] = 524288] = "MAV_PROTOCOL_CAPABILITY_COMPONENT_ACCEPTS_GCS_CONTROL";
|
|
559
|
+
// Autopilot has a connected gripper. MAVLink Grippers would set MAV_TYPE_GRIPPER instead.
|
|
560
|
+
MAV_PROTOCOL_CAPABILITYEnum[MAV_PROTOCOL_CAPABILITYEnum["MAV_PROTOCOL_CAPABILITY_GRIPPER"] = 1048576] = "MAV_PROTOCOL_CAPABILITY_GRIPPER";
|
|
561
|
+
})(MAV_PROTOCOL_CAPABILITYEnum || (MAV_PROTOCOL_CAPABILITYEnum = {}));
|
|
504
562
|
// These values define the type of firmware release. These values indicate the first version or release of this type. For example the first alpha release would be 64, the second would be 65.
|
|
505
563
|
var FIRMWARE_VERSION_TYPEEnum;
|
|
506
564
|
(function (FIRMWARE_VERSION_TYPEEnum) {
|
|
@@ -927,6 +985,8 @@ var GRIPPER_ACTIONSEnum;
|
|
|
927
985
|
GRIPPER_ACTIONSEnum[GRIPPER_ACTIONSEnum["GRIPPER_ACTION_RELEASE"] = 0] = "GRIPPER_ACTION_RELEASE";
|
|
928
986
|
// Gripper grab onto cargo.
|
|
929
987
|
GRIPPER_ACTIONSEnum[GRIPPER_ACTIONSEnum["GRIPPER_ACTION_GRAB"] = 1] = "GRIPPER_ACTION_GRAB";
|
|
988
|
+
// Gripper hold current grip state/position.
|
|
989
|
+
GRIPPER_ACTIONSEnum[GRIPPER_ACTIONSEnum["GRIPPER_ACTION_HOLD"] = 2] = "GRIPPER_ACTION_HOLD";
|
|
930
990
|
})(GRIPPER_ACTIONSEnum || (GRIPPER_ACTIONSEnum = {}));
|
|
931
991
|
// Winch actions.
|
|
932
992
|
var WINCH_ACTIONSEnum;
|
|
@@ -1255,6 +1315,20 @@ var PREFLIGHT_STORAGE_MISSION_ACTIONEnum;
|
|
|
1255
1315
|
// Erase all mission data stored on the vehicle (both persistent and volatile storage)
|
|
1256
1316
|
PREFLIGHT_STORAGE_MISSION_ACTIONEnum[PREFLIGHT_STORAGE_MISSION_ACTIONEnum["MISSION_RESET_DEFAULT"] = 2] = "MISSION_RESET_DEFAULT";
|
|
1257
1317
|
})(PREFLIGHT_STORAGE_MISSION_ACTIONEnum || (PREFLIGHT_STORAGE_MISSION_ACTIONEnum = {}));
|
|
1318
|
+
// Reboot/shutdown action for selected component in MAV_CMD_PREFLIGHT_REBOOT_SHUTDOWN.
|
|
1319
|
+
var REBOOT_SHUTDOWN_ACTIONEnum;
|
|
1320
|
+
(function (REBOOT_SHUTDOWN_ACTIONEnum) {
|
|
1321
|
+
// Do nothing.
|
|
1322
|
+
REBOOT_SHUTDOWN_ACTIONEnum[REBOOT_SHUTDOWN_ACTIONEnum["REBOOT_SHUTDOWN_ACTION_NONE"] = 0] = "REBOOT_SHUTDOWN_ACTION_NONE";
|
|
1323
|
+
// Reboot component.
|
|
1324
|
+
REBOOT_SHUTDOWN_ACTIONEnum[REBOOT_SHUTDOWN_ACTIONEnum["REBOOT_SHUTDOWN_ACTION_REBOOT"] = 1] = "REBOOT_SHUTDOWN_ACTION_REBOOT";
|
|
1325
|
+
// Shutdown component.
|
|
1326
|
+
REBOOT_SHUTDOWN_ACTIONEnum[REBOOT_SHUTDOWN_ACTIONEnum["REBOOT_SHUTDOWN_ACTION_SHUTDOWN"] = 2] = "REBOOT_SHUTDOWN_ACTION_SHUTDOWN";
|
|
1327
|
+
// Reboot component and keep it in the bootloader until upgraded.
|
|
1328
|
+
REBOOT_SHUTDOWN_ACTIONEnum[REBOOT_SHUTDOWN_ACTIONEnum["REBOOT_SHUTDOWN_ACTION_REBOOT_TO_BOOTLOADER"] = 3] = "REBOOT_SHUTDOWN_ACTION_REBOOT_TO_BOOTLOADER";
|
|
1329
|
+
// Power on component. Do nothing if component is already powered (ACK command with MAV_RESULT_ACCEPTED).
|
|
1330
|
+
REBOOT_SHUTDOWN_ACTIONEnum[REBOOT_SHUTDOWN_ACTIONEnum["REBOOT_SHUTDOWN_ACTION_POWER_ON"] = 4] = "REBOOT_SHUTDOWN_ACTION_POWER_ON";
|
|
1331
|
+
})(REBOOT_SHUTDOWN_ACTIONEnum || (REBOOT_SHUTDOWN_ACTIONEnum = {}));
|
|
1258
1332
|
// Specifies the conditions under which the MAV_CMD_PREFLIGHT_REBOOT_SHUTDOWN command should be accepted.
|
|
1259
1333
|
var REBOOT_SHUTDOWN_CONDITIONSEnum;
|
|
1260
1334
|
(function (REBOOT_SHUTDOWN_CONDITIONSEnum) {
|
|
@@ -1296,6 +1370,12 @@ var MAV_CMDEnum;
|
|
|
1296
1370
|
MAV_CMDEnum[MAV_CMDEnum["MAV_CMD_DO_FOLLOW_REPOSITION"] = 33] = "MAV_CMD_DO_FOLLOW_REPOSITION";
|
|
1297
1371
|
// Start orbiting on the circumference of a circle defined by the parameters. Setting values to NaN/INT32_MAX (as appropriate) results in using defaults.
|
|
1298
1372
|
MAV_CMDEnum[MAV_CMDEnum["MAV_CMD_DO_ORBIT"] = 34] = "MAV_CMD_DO_ORBIT";
|
|
1373
|
+
// Fly a figure eight path as defined by the parameters.
|
|
1374
|
+
// Set parameters to NaN/INT32_MAX (as appropriate) to use system-default values.
|
|
1375
|
+
// The command is intended for fixed wing vehicles (and VTOL hybrids flying in fixed-wing mode), allowing POI tracking for gimbals that don't support infinite rotation.
|
|
1376
|
+
// This command only defines the flight path. Speed should be set independently (use e.g. MAV_CMD_DO_CHANGE_SPEED).
|
|
1377
|
+
// Yaw and other degrees of freedom are not specified, and will be flight-stack specific (on vehicles where they can be controlled independent of the heading).
|
|
1378
|
+
MAV_CMDEnum[MAV_CMDEnum["MAV_CMD_DO_FIGURE_EIGHT"] = 35] = "MAV_CMD_DO_FIGURE_EIGHT";
|
|
1299
1379
|
// Sets the region of interest (ROI) for a sensor set or the vehicle itself. This can then be used by the vehicle's control system to control the vehicle attitude and the attitude of various sensors such as cameras.
|
|
1300
1380
|
MAV_CMDEnum[MAV_CMDEnum["MAV_CMD_NAV_ROI"] = 80] = "MAV_CMD_NAV_ROI";
|
|
1301
1381
|
// Control autonomous path planning on the MAV.
|
|
@@ -1797,6 +1877,28 @@ var MAV_PARAM_TYPEEnum;
|
|
|
1797
1877
|
// 64-bit floating-point
|
|
1798
1878
|
MAV_PARAM_TYPEEnum[MAV_PARAM_TYPEEnum["MAV_PARAM_TYPE_REAL64"] = 10] = "MAV_PARAM_TYPE_REAL64";
|
|
1799
1879
|
})(MAV_PARAM_TYPEEnum || (MAV_PARAM_TYPEEnum = {}));
|
|
1880
|
+
// Parameter protocol error types (see PARAM_ERROR).
|
|
1881
|
+
var MAV_PARAM_ERROREnum;
|
|
1882
|
+
(function (MAV_PARAM_ERROREnum) {
|
|
1883
|
+
// No error occurred (not expected in PARAM_ERROR but may be used in future implementations.
|
|
1884
|
+
MAV_PARAM_ERROREnum[MAV_PARAM_ERROREnum["MAV_PARAM_ERROR_NO_ERROR"] = 0] = "MAV_PARAM_ERROR_NO_ERROR";
|
|
1885
|
+
// Parameter does not exist
|
|
1886
|
+
MAV_PARAM_ERROREnum[MAV_PARAM_ERROREnum["MAV_PARAM_ERROR_DOES_NOT_EXIST"] = 1] = "MAV_PARAM_ERROR_DOES_NOT_EXIST";
|
|
1887
|
+
// Parameter value does not fit within accepted range
|
|
1888
|
+
MAV_PARAM_ERROREnum[MAV_PARAM_ERROREnum["MAV_PARAM_ERROR_VALUE_OUT_OF_RANGE"] = 2] = "MAV_PARAM_ERROR_VALUE_OUT_OF_RANGE";
|
|
1889
|
+
// Caller is not permitted to set the value of this parameter
|
|
1890
|
+
MAV_PARAM_ERROREnum[MAV_PARAM_ERROREnum["MAV_PARAM_ERROR_PERMISSION_DENIED"] = 3] = "MAV_PARAM_ERROR_PERMISSION_DENIED";
|
|
1891
|
+
// Unknown component specified
|
|
1892
|
+
MAV_PARAM_ERROREnum[MAV_PARAM_ERROREnum["MAV_PARAM_ERROR_COMPONENT_NOT_FOUND"] = 4] = "MAV_PARAM_ERROR_COMPONENT_NOT_FOUND";
|
|
1893
|
+
// Parameter is read-only
|
|
1894
|
+
MAV_PARAM_ERROREnum[MAV_PARAM_ERROREnum["MAV_PARAM_ERROR_READ_ONLY"] = 5] = "MAV_PARAM_ERROR_READ_ONLY";
|
|
1895
|
+
// Parameter data type (MAV_PARAM_TYPE) is not supported by flight stack (at all)
|
|
1896
|
+
MAV_PARAM_ERROREnum[MAV_PARAM_ERROREnum["MAV_PARAM_ERROR_TYPE_UNSUPPORTED"] = 6] = "MAV_PARAM_ERROR_TYPE_UNSUPPORTED";
|
|
1897
|
+
// Parameter type does not match expected type
|
|
1898
|
+
MAV_PARAM_ERROREnum[MAV_PARAM_ERROREnum["MAV_PARAM_ERROR_TYPE_MISMATCH"] = 7] = "MAV_PARAM_ERROR_TYPE_MISMATCH";
|
|
1899
|
+
// Parameter exists but reading failed
|
|
1900
|
+
MAV_PARAM_ERROREnum[MAV_PARAM_ERROREnum["MAV_PARAM_ERROR_READ_FAIL"] = 8] = "MAV_PARAM_ERROR_READ_FAIL";
|
|
1901
|
+
})(MAV_PARAM_ERROREnum || (MAV_PARAM_ERROREnum = {}));
|
|
1800
1902
|
// Specifies the datatype of a MAVLink extended parameter.
|
|
1801
1903
|
var MAV_PARAM_EXT_TYPEEnum;
|
|
1802
1904
|
(function (MAV_PARAM_EXT_TYPEEnum) {
|
|
@@ -1830,7 +1932,7 @@ var MAV_RESULTEnum;
|
|
|
1830
1932
|
MAV_RESULTEnum[MAV_RESULTEnum["MAV_RESULT_ACCEPTED"] = 0] = "MAV_RESULT_ACCEPTED";
|
|
1831
1933
|
// 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.
|
|
1832
1934
|
MAV_RESULTEnum[MAV_RESULTEnum["MAV_RESULT_TEMPORARILY_REJECTED"] = 1] = "MAV_RESULT_TEMPORARILY_REJECTED";
|
|
1833
|
-
// Command is invalid
|
|
1935
|
+
// 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.
|
|
1834
1936
|
MAV_RESULTEnum[MAV_RESULTEnum["MAV_RESULT_DENIED"] = 2] = "MAV_RESULT_DENIED";
|
|
1835
1937
|
// Command is not supported (unknown).
|
|
1836
1938
|
MAV_RESULTEnum[MAV_RESULTEnum["MAV_RESULT_UNSUPPORTED"] = 3] = "MAV_RESULT_UNSUPPORTED";
|
|
@@ -1846,6 +1948,8 @@ var MAV_RESULTEnum;
|
|
|
1846
1948
|
MAV_RESULTEnum[MAV_RESULTEnum["MAV_RESULT_COMMAND_INT_ONLY"] = 8] = "MAV_RESULT_COMMAND_INT_ONLY";
|
|
1847
1949
|
// Command is invalid because a frame is required and the specified frame is not supported.
|
|
1848
1950
|
MAV_RESULTEnum[MAV_RESULTEnum["MAV_RESULT_COMMAND_UNSUPPORTED_MAV_FRAME"] = 9] = "MAV_RESULT_COMMAND_UNSUPPORTED_MAV_FRAME";
|
|
1951
|
+
// Command has been rejected because source system is not in control of the target system/component.
|
|
1952
|
+
MAV_RESULTEnum[MAV_RESULTEnum["MAV_RESULT_NOT_IN_CONTROL"] = 10] = "MAV_RESULT_NOT_IN_CONTROL";
|
|
1849
1953
|
})(MAV_RESULTEnum || (MAV_RESULTEnum = {}));
|
|
1850
1954
|
// Result of mission operation (in a MISSION_ACK message).
|
|
1851
1955
|
var MAV_MISSION_RESULTEnum;
|
|
@@ -2069,56 +2173,6 @@ var MAV_SENSOR_ORIENTATIONEnum;
|
|
|
2069
2173
|
// Custom orientation
|
|
2070
2174
|
MAV_SENSOR_ORIENTATIONEnum[MAV_SENSOR_ORIENTATIONEnum["MAV_SENSOR_ROTATION_CUSTOM"] = 100] = "MAV_SENSOR_ROTATION_CUSTOM";
|
|
2071
2175
|
})(MAV_SENSOR_ORIENTATIONEnum || (MAV_SENSOR_ORIENTATIONEnum = {}));
|
|
2072
|
-
// Bitmask of (optional) autopilot capabilities (64 bit). If a bit is set, the autopilot supports this capability.
|
|
2073
|
-
var MAV_PROTOCOL_CAPABILITYEnum;
|
|
2074
|
-
(function (MAV_PROTOCOL_CAPABILITYEnum) {
|
|
2075
|
-
// Autopilot supports the MISSION_ITEM float message type.
|
|
2076
|
-
// Note that MISSION_ITEM is deprecated, and autopilots should use MISSION_INT instead.
|
|
2077
|
-
MAV_PROTOCOL_CAPABILITYEnum[MAV_PROTOCOL_CAPABILITYEnum["MAV_PROTOCOL_CAPABILITY_MISSION_FLOAT"] = 1] = "MAV_PROTOCOL_CAPABILITY_MISSION_FLOAT";
|
|
2078
|
-
// Autopilot supports the new param float message type.
|
|
2079
|
-
MAV_PROTOCOL_CAPABILITYEnum[MAV_PROTOCOL_CAPABILITYEnum["MAV_PROTOCOL_CAPABILITY_PARAM_FLOAT"] = 2] = "MAV_PROTOCOL_CAPABILITY_PARAM_FLOAT";
|
|
2080
|
-
// Autopilot supports MISSION_ITEM_INT scaled integer message type.
|
|
2081
|
-
// 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).
|
|
2082
|
-
MAV_PROTOCOL_CAPABILITYEnum[MAV_PROTOCOL_CAPABILITYEnum["MAV_PROTOCOL_CAPABILITY_MISSION_INT"] = 4] = "MAV_PROTOCOL_CAPABILITY_MISSION_INT";
|
|
2083
|
-
// Autopilot supports COMMAND_INT scaled integer message type.
|
|
2084
|
-
MAV_PROTOCOL_CAPABILITYEnum[MAV_PROTOCOL_CAPABILITYEnum["MAV_PROTOCOL_CAPABILITY_COMMAND_INT"] = 8] = "MAV_PROTOCOL_CAPABILITY_COMMAND_INT";
|
|
2085
|
-
// Parameter protocol uses byte-wise encoding of parameter values into param_value (float) fields: https://mavlink.io/en/services/parameter.html#parameter-encoding.
|
|
2086
|
-
// Note that either this flag or MAV_PROTOCOL_CAPABILITY_PARAM_ENCODE_C_CAST should be set if the parameter protocol is supported.
|
|
2087
|
-
MAV_PROTOCOL_CAPABILITYEnum[MAV_PROTOCOL_CAPABILITYEnum["MAV_PROTOCOL_CAPABILITY_PARAM_ENCODE_BYTEWISE"] = 16] = "MAV_PROTOCOL_CAPABILITY_PARAM_ENCODE_BYTEWISE";
|
|
2088
|
-
// Autopilot supports the File Transfer Protocol v1: https://mavlink.io/en/services/ftp.html.
|
|
2089
|
-
MAV_PROTOCOL_CAPABILITYEnum[MAV_PROTOCOL_CAPABILITYEnum["MAV_PROTOCOL_CAPABILITY_FTP"] = 32] = "MAV_PROTOCOL_CAPABILITY_FTP";
|
|
2090
|
-
// Autopilot supports commanding attitude offboard.
|
|
2091
|
-
MAV_PROTOCOL_CAPABILITYEnum[MAV_PROTOCOL_CAPABILITYEnum["MAV_PROTOCOL_CAPABILITY_SET_ATTITUDE_TARGET"] = 64] = "MAV_PROTOCOL_CAPABILITY_SET_ATTITUDE_TARGET";
|
|
2092
|
-
// Autopilot supports commanding position and velocity targets in local NED frame.
|
|
2093
|
-
MAV_PROTOCOL_CAPABILITYEnum[MAV_PROTOCOL_CAPABILITYEnum["MAV_PROTOCOL_CAPABILITY_SET_POSITION_TARGET_LOCAL_NED"] = 128] = "MAV_PROTOCOL_CAPABILITY_SET_POSITION_TARGET_LOCAL_NED";
|
|
2094
|
-
// Autopilot supports commanding position and velocity targets in global scaled integers.
|
|
2095
|
-
MAV_PROTOCOL_CAPABILITYEnum[MAV_PROTOCOL_CAPABILITYEnum["MAV_PROTOCOL_CAPABILITY_SET_POSITION_TARGET_GLOBAL_INT"] = 256] = "MAV_PROTOCOL_CAPABILITY_SET_POSITION_TARGET_GLOBAL_INT";
|
|
2096
|
-
// Autopilot supports terrain protocol / data handling.
|
|
2097
|
-
MAV_PROTOCOL_CAPABILITYEnum[MAV_PROTOCOL_CAPABILITYEnum["MAV_PROTOCOL_CAPABILITY_TERRAIN"] = 512] = "MAV_PROTOCOL_CAPABILITY_TERRAIN";
|
|
2098
|
-
// Reserved for future use.
|
|
2099
|
-
MAV_PROTOCOL_CAPABILITYEnum[MAV_PROTOCOL_CAPABILITYEnum["MAV_PROTOCOL_CAPABILITY_RESERVED3"] = 1024] = "MAV_PROTOCOL_CAPABILITY_RESERVED3";
|
|
2100
|
-
// Autopilot supports the MAV_CMD_DO_FLIGHTTERMINATION command (flight termination).
|
|
2101
|
-
MAV_PROTOCOL_CAPABILITYEnum[MAV_PROTOCOL_CAPABILITYEnum["MAV_PROTOCOL_CAPABILITY_FLIGHT_TERMINATION"] = 2048] = "MAV_PROTOCOL_CAPABILITY_FLIGHT_TERMINATION";
|
|
2102
|
-
// Autopilot supports onboard compass calibration.
|
|
2103
|
-
MAV_PROTOCOL_CAPABILITYEnum[MAV_PROTOCOL_CAPABILITYEnum["MAV_PROTOCOL_CAPABILITY_COMPASS_CALIBRATION"] = 4096] = "MAV_PROTOCOL_CAPABILITY_COMPASS_CALIBRATION";
|
|
2104
|
-
// Autopilot supports MAVLink version 2.
|
|
2105
|
-
MAV_PROTOCOL_CAPABILITYEnum[MAV_PROTOCOL_CAPABILITYEnum["MAV_PROTOCOL_CAPABILITY_MAVLINK2"] = 8192] = "MAV_PROTOCOL_CAPABILITY_MAVLINK2";
|
|
2106
|
-
// Autopilot supports mission fence protocol.
|
|
2107
|
-
MAV_PROTOCOL_CAPABILITYEnum[MAV_PROTOCOL_CAPABILITYEnum["MAV_PROTOCOL_CAPABILITY_MISSION_FENCE"] = 16384] = "MAV_PROTOCOL_CAPABILITY_MISSION_FENCE";
|
|
2108
|
-
// Autopilot supports mission rally point protocol.
|
|
2109
|
-
MAV_PROTOCOL_CAPABILITYEnum[MAV_PROTOCOL_CAPABILITYEnum["MAV_PROTOCOL_CAPABILITY_MISSION_RALLY"] = 32768] = "MAV_PROTOCOL_CAPABILITY_MISSION_RALLY";
|
|
2110
|
-
// Reserved for future use.
|
|
2111
|
-
MAV_PROTOCOL_CAPABILITYEnum[MAV_PROTOCOL_CAPABILITYEnum["MAV_PROTOCOL_CAPABILITY_RESERVED2"] = 65536] = "MAV_PROTOCOL_CAPABILITY_RESERVED2";
|
|
2112
|
-
// Parameter protocol uses C-cast of parameter values to set the param_value (float) fields: https://mavlink.io/en/services/parameter.html#parameter-encoding.
|
|
2113
|
-
// Note that either this flag or MAV_PROTOCOL_CAPABILITY_PARAM_ENCODE_BYTEWISE should be set if the parameter protocol is supported.
|
|
2114
|
-
MAV_PROTOCOL_CAPABILITYEnum[MAV_PROTOCOL_CAPABILITYEnum["MAV_PROTOCOL_CAPABILITY_PARAM_ENCODE_C_CAST"] = 131072] = "MAV_PROTOCOL_CAPABILITY_PARAM_ENCODE_C_CAST";
|
|
2115
|
-
// This component implements/is a gimbal manager. This means the GIMBAL_MANAGER_INFORMATION, and other messages can be requested.
|
|
2116
|
-
MAV_PROTOCOL_CAPABILITYEnum[MAV_PROTOCOL_CAPABILITYEnum["MAV_PROTOCOL_CAPABILITY_COMPONENT_IMPLEMENTS_GIMBAL_MANAGER"] = 262144] = "MAV_PROTOCOL_CAPABILITY_COMPONENT_IMPLEMENTS_GIMBAL_MANAGER";
|
|
2117
|
-
// Component supports locking control to a particular GCS independent of its system (via MAV_CMD_REQUEST_OPERATOR_CONTROL).
|
|
2118
|
-
MAV_PROTOCOL_CAPABILITYEnum[MAV_PROTOCOL_CAPABILITYEnum["MAV_PROTOCOL_CAPABILITY_COMPONENT_ACCEPTS_GCS_CONTROL"] = 524288] = "MAV_PROTOCOL_CAPABILITY_COMPONENT_ACCEPTS_GCS_CONTROL";
|
|
2119
|
-
// Autopilot has a connected gripper. MAVLink Grippers would set MAV_TYPE_GRIPPER instead.
|
|
2120
|
-
MAV_PROTOCOL_CAPABILITYEnum[MAV_PROTOCOL_CAPABILITYEnum["MAV_PROTOCOL_CAPABILITY_GRIPPER"] = 1048576] = "MAV_PROTOCOL_CAPABILITY_GRIPPER";
|
|
2121
|
-
})(MAV_PROTOCOL_CAPABILITYEnum || (MAV_PROTOCOL_CAPABILITYEnum = {}));
|
|
2122
2176
|
// Type of mission items being requested/sent in mission protocol.
|
|
2123
2177
|
var MAV_MISSION_TYPEEnum;
|
|
2124
2178
|
(function (MAV_MISSION_TYPEEnum) {
|
|
@@ -2577,6 +2631,8 @@ var CAMERA_CAP_FLAGSEnum;
|
|
|
2577
2631
|
CAMERA_CAP_FLAGSEnum[CAMERA_CAP_FLAGSEnum["CAMERA_CAP_FLAGS_HAS_TRACKING_GEO_STATUS"] = 2048] = "CAMERA_CAP_FLAGS_HAS_TRACKING_GEO_STATUS";
|
|
2578
2632
|
// Camera supports absolute thermal range (request CAMERA_THERMAL_RANGE with MAV_CMD_REQUEST_MESSAGE).
|
|
2579
2633
|
CAMERA_CAP_FLAGSEnum[CAMERA_CAP_FLAGSEnum["CAMERA_CAP_FLAGS_HAS_THERMAL_RANGE"] = 4096] = "CAMERA_CAP_FLAGS_HAS_THERMAL_RANGE";
|
|
2634
|
+
// Camera supports Moving Target Indicators (MTI) on the camera view (using MAV_CMD_CAMERA_START_MTI).
|
|
2635
|
+
CAMERA_CAP_FLAGSEnum[CAMERA_CAP_FLAGSEnum["CAMERA_CAP_FLAGS_HAS_MTI"] = 8192] = "CAMERA_CAP_FLAGS_HAS_MTI";
|
|
2580
2636
|
})(CAMERA_CAP_FLAGSEnum || (CAMERA_CAP_FLAGSEnum = {}));
|
|
2581
2637
|
// Stream status flags (Bitmap)
|
|
2582
2638
|
var VIDEO_STREAM_STATUS_FLAGSEnum;
|
|
@@ -2619,6 +2675,10 @@ var CAMERA_TRACKING_STATUS_FLAGSEnum;
|
|
|
2619
2675
|
CAMERA_TRACKING_STATUS_FLAGSEnum[CAMERA_TRACKING_STATUS_FLAGSEnum["CAMERA_TRACKING_STATUS_FLAGS_ACTIVE"] = 1] = "CAMERA_TRACKING_STATUS_FLAGS_ACTIVE";
|
|
2620
2676
|
// Camera tracking in error state
|
|
2621
2677
|
CAMERA_TRACKING_STATUS_FLAGSEnum[CAMERA_TRACKING_STATUS_FLAGSEnum["CAMERA_TRACKING_STATUS_FLAGS_ERROR"] = 2] = "CAMERA_TRACKING_STATUS_FLAGS_ERROR";
|
|
2678
|
+
// Camera Moving Target Indicators (MTI) are active
|
|
2679
|
+
CAMERA_TRACKING_STATUS_FLAGSEnum[CAMERA_TRACKING_STATUS_FLAGSEnum["CAMERA_TRACKING_STATUS_FLAGS_MTI"] = 4] = "CAMERA_TRACKING_STATUS_FLAGS_MTI";
|
|
2680
|
+
// Camera tracking target is obscured and is being predicted
|
|
2681
|
+
CAMERA_TRACKING_STATUS_FLAGSEnum[CAMERA_TRACKING_STATUS_FLAGSEnum["CAMERA_TRACKING_STATUS_FLAGS_COASTING"] = 8] = "CAMERA_TRACKING_STATUS_FLAGS_COASTING";
|
|
2622
2682
|
})(CAMERA_TRACKING_STATUS_FLAGSEnum || (CAMERA_TRACKING_STATUS_FLAGSEnum = {}));
|
|
2623
2683
|
// Camera tracking modes
|
|
2624
2684
|
var CAMERA_TRACKING_MODEEnum;
|
|
@@ -3287,24 +3347,24 @@ var AIS_TYPEEnum;
|
|
|
3287
3347
|
var AIS_NAV_STATUSEnum;
|
|
3288
3348
|
(function (AIS_NAV_STATUSEnum) {
|
|
3289
3349
|
// Under way using engine.
|
|
3290
|
-
AIS_NAV_STATUSEnum[AIS_NAV_STATUSEnum["
|
|
3291
|
-
AIS_NAV_STATUSEnum[AIS_NAV_STATUSEnum["
|
|
3292
|
-
AIS_NAV_STATUSEnum[AIS_NAV_STATUSEnum["
|
|
3293
|
-
AIS_NAV_STATUSEnum[AIS_NAV_STATUSEnum["
|
|
3294
|
-
AIS_NAV_STATUSEnum[AIS_NAV_STATUSEnum["
|
|
3295
|
-
AIS_NAV_STATUSEnum[AIS_NAV_STATUSEnum["
|
|
3296
|
-
AIS_NAV_STATUSEnum[AIS_NAV_STATUSEnum["
|
|
3297
|
-
AIS_NAV_STATUSEnum[AIS_NAV_STATUSEnum["
|
|
3298
|
-
AIS_NAV_STATUSEnum[AIS_NAV_STATUSEnum["
|
|
3299
|
-
AIS_NAV_STATUSEnum[AIS_NAV_STATUSEnum["
|
|
3300
|
-
AIS_NAV_STATUSEnum[AIS_NAV_STATUSEnum["
|
|
3301
|
-
AIS_NAV_STATUSEnum[AIS_NAV_STATUSEnum["
|
|
3302
|
-
AIS_NAV_STATUSEnum[AIS_NAV_STATUSEnum["
|
|
3303
|
-
AIS_NAV_STATUSEnum[AIS_NAV_STATUSEnum["
|
|
3350
|
+
AIS_NAV_STATUSEnum[AIS_NAV_STATUSEnum["AIS_NAV_STATUS_UNDER_WAY"] = 0] = "AIS_NAV_STATUS_UNDER_WAY";
|
|
3351
|
+
AIS_NAV_STATUSEnum[AIS_NAV_STATUSEnum["AIS_NAV_STATUS_ANCHORED"] = 1] = "AIS_NAV_STATUS_ANCHORED";
|
|
3352
|
+
AIS_NAV_STATUSEnum[AIS_NAV_STATUSEnum["AIS_NAV_STATUS_UN_COMMANDED"] = 2] = "AIS_NAV_STATUS_UN_COMMANDED";
|
|
3353
|
+
AIS_NAV_STATUSEnum[AIS_NAV_STATUSEnum["AIS_NAV_STATUS_RESTRICTED_MANOEUVERABILITY"] = 3] = "AIS_NAV_STATUS_RESTRICTED_MANOEUVERABILITY";
|
|
3354
|
+
AIS_NAV_STATUSEnum[AIS_NAV_STATUSEnum["AIS_NAV_STATUS_DRAUGHT_CONSTRAINED"] = 4] = "AIS_NAV_STATUS_DRAUGHT_CONSTRAINED";
|
|
3355
|
+
AIS_NAV_STATUSEnum[AIS_NAV_STATUSEnum["AIS_NAV_STATUS_MOORED"] = 5] = "AIS_NAV_STATUS_MOORED";
|
|
3356
|
+
AIS_NAV_STATUSEnum[AIS_NAV_STATUSEnum["AIS_NAV_STATUS_AGROUND"] = 6] = "AIS_NAV_STATUS_AGROUND";
|
|
3357
|
+
AIS_NAV_STATUSEnum[AIS_NAV_STATUSEnum["AIS_NAV_STATUS_FISHING"] = 7] = "AIS_NAV_STATUS_FISHING";
|
|
3358
|
+
AIS_NAV_STATUSEnum[AIS_NAV_STATUSEnum["AIS_NAV_STATUS_SAILING"] = 8] = "AIS_NAV_STATUS_SAILING";
|
|
3359
|
+
AIS_NAV_STATUSEnum[AIS_NAV_STATUSEnum["AIS_NAV_STATUS_RESERVED_HSC"] = 9] = "AIS_NAV_STATUS_RESERVED_HSC";
|
|
3360
|
+
AIS_NAV_STATUSEnum[AIS_NAV_STATUSEnum["AIS_NAV_STATUS_RESERVED_WIG"] = 10] = "AIS_NAV_STATUS_RESERVED_WIG";
|
|
3361
|
+
AIS_NAV_STATUSEnum[AIS_NAV_STATUSEnum["AIS_NAV_STATUS_RESERVED_1"] = 11] = "AIS_NAV_STATUS_RESERVED_1";
|
|
3362
|
+
AIS_NAV_STATUSEnum[AIS_NAV_STATUSEnum["AIS_NAV_STATUS_RESERVED_2"] = 12] = "AIS_NAV_STATUS_RESERVED_2";
|
|
3363
|
+
AIS_NAV_STATUSEnum[AIS_NAV_STATUSEnum["AIS_NAV_STATUS_RESERVED_3"] = 13] = "AIS_NAV_STATUS_RESERVED_3";
|
|
3304
3364
|
// Search And Rescue Transponder.
|
|
3305
|
-
AIS_NAV_STATUSEnum[AIS_NAV_STATUSEnum["
|
|
3365
|
+
AIS_NAV_STATUSEnum[AIS_NAV_STATUSEnum["AIS_NAV_STATUS_AIS_SART"] = 14] = "AIS_NAV_STATUS_AIS_SART";
|
|
3306
3366
|
// Not available (default).
|
|
3307
|
-
AIS_NAV_STATUSEnum[AIS_NAV_STATUSEnum["
|
|
3367
|
+
AIS_NAV_STATUSEnum[AIS_NAV_STATUSEnum["AIS_NAV_STATUS_UNKNOWN"] = 15] = "AIS_NAV_STATUS_UNKNOWN";
|
|
3308
3368
|
})(AIS_NAV_STATUSEnum || (AIS_NAV_STATUSEnum = {}));
|
|
3309
3369
|
// 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.
|
|
3310
3370
|
var AIS_FLAGSEnum;
|
|
@@ -3698,6 +3758,26 @@ var HIL_ACTUATOR_CONTROLS_FLAGSEnum;
|
|
|
3698
3758
|
// Simulation is using lockstep
|
|
3699
3759
|
HIL_ACTUATOR_CONTROLS_FLAGSEnum[HIL_ACTUATOR_CONTROLS_FLAGSEnum["HIL_ACTUATOR_CONTROLS_FLAGS_LOCKSTEP"] = 1] = "HIL_ACTUATOR_CONTROLS_FLAGS_LOCKSTEP";
|
|
3700
3760
|
})(HIL_ACTUATOR_CONTROLS_FLAGSEnum || (HIL_ACTUATOR_CONTROLS_FLAGSEnum = {}));
|
|
3761
|
+
// Flags used to report computer status.
|
|
3762
|
+
var COMPUTER_STATUS_FLAGSEnum;
|
|
3763
|
+
(function (COMPUTER_STATUS_FLAGSEnum) {
|
|
3764
|
+
// Indicates if the system is experiencing voltage outside of acceptable range.
|
|
3765
|
+
COMPUTER_STATUS_FLAGSEnum[COMPUTER_STATUS_FLAGSEnum["COMPUTER_STATUS_FLAGS_UNDER_VOLTAGE"] = 1] = "COMPUTER_STATUS_FLAGS_UNDER_VOLTAGE";
|
|
3766
|
+
// Indicates if CPU throttling is active.
|
|
3767
|
+
COMPUTER_STATUS_FLAGSEnum[COMPUTER_STATUS_FLAGSEnum["COMPUTER_STATUS_FLAGS_CPU_THROTTLE"] = 2] = "COMPUTER_STATUS_FLAGS_CPU_THROTTLE";
|
|
3768
|
+
// Indicates if thermal throttling is active.
|
|
3769
|
+
COMPUTER_STATUS_FLAGSEnum[COMPUTER_STATUS_FLAGSEnum["COMPUTER_STATUS_FLAGS_THERMAL_THROTTLE"] = 4] = "COMPUTER_STATUS_FLAGS_THERMAL_THROTTLE";
|
|
3770
|
+
// Indicates if main disk is full.
|
|
3771
|
+
COMPUTER_STATUS_FLAGSEnum[COMPUTER_STATUS_FLAGSEnum["COMPUTER_STATUS_FLAGS_DISK_FULL"] = 8] = "COMPUTER_STATUS_FLAGS_DISK_FULL";
|
|
3772
|
+
})(COMPUTER_STATUS_FLAGSEnum || (COMPUTER_STATUS_FLAGSEnum = {}));
|
|
3773
|
+
// Airspeed sensor flags
|
|
3774
|
+
var AIRSPEED_SENSOR_FLAGSEnum;
|
|
3775
|
+
(function (AIRSPEED_SENSOR_FLAGSEnum) {
|
|
3776
|
+
// Airspeed sensor is unhealthy
|
|
3777
|
+
AIRSPEED_SENSOR_FLAGSEnum[AIRSPEED_SENSOR_FLAGSEnum["AIRSPEED_SENSOR_UNHEALTHY"] = 1] = "AIRSPEED_SENSOR_UNHEALTHY";
|
|
3778
|
+
// True if the data from this sensor is being actively used by the flight controller for guidance, navigation or control.
|
|
3779
|
+
AIRSPEED_SENSOR_FLAGSEnum[AIRSPEED_SENSOR_FLAGSEnum["AIRSPEED_SENSOR_USING"] = 2] = "AIRSPEED_SENSOR_USING";
|
|
3780
|
+
})(AIRSPEED_SENSOR_FLAGSEnum || (AIRSPEED_SENSOR_FLAGSEnum = {}));
|
|
3701
3781
|
// State flags for ADS-B transponder dynamic report
|
|
3702
3782
|
var UAVIONIX_ADSB_OUT_DYNAMIC_STATEEnum;
|
|
3703
3783
|
(function (UAVIONIX_ADSB_OUT_DYNAMIC_STATEEnum) {
|
|
@@ -4526,6 +4606,8 @@ var COPTER_MODEEnum;
|
|
|
4526
4606
|
COPTER_MODEEnum[COPTER_MODEEnum["COPTER_MODE_AUTO_RTL"] = 27] = "COPTER_MODE_AUTO_RTL";
|
|
4527
4607
|
// TURTLE
|
|
4528
4608
|
COPTER_MODEEnum[COPTER_MODEEnum["COPTER_MODE_TURTLE"] = 28] = "COPTER_MODE_TURTLE";
|
|
4609
|
+
// RATE_ACRO
|
|
4610
|
+
COPTER_MODEEnum[COPTER_MODEEnum["COPTER_MODE_RATE_ACRO"] = 29] = "COPTER_MODE_RATE_ACRO";
|
|
4529
4611
|
})(COPTER_MODEEnum || (COPTER_MODEEnum = {}));
|
|
4530
4612
|
// A mapping of sub flight modes for custom_mode field of heartbeat.
|
|
4531
4613
|
var SUB_MODEEnum;
|
|
@@ -4630,8 +4712,11 @@ var OSD_PARAM_CONFIG_ERROREnum;
|
|
|
4630
4712
|
function isHeartbeat(msg) {
|
|
4631
4713
|
return msg.message_name === 'HEARTBEAT';
|
|
4632
4714
|
}
|
|
4633
|
-
function
|
|
4634
|
-
return msg.message_name === '
|
|
4715
|
+
function isGlobalPositionInt(msg) {
|
|
4716
|
+
return msg.message_name === 'GLOBAL_POSITION_INT';
|
|
4717
|
+
}
|
|
4718
|
+
function isAutopilotVersion(msg) {
|
|
4719
|
+
return msg.message_name === 'AUTOPILOT_VERSION';
|
|
4635
4720
|
}
|
|
4636
4721
|
function isSysStatus(msg) {
|
|
4637
4722
|
return msg.message_name === 'SYS_STATUS';
|
|
@@ -4696,9 +4781,6 @@ function isAttitudeQuaternion(msg) {
|
|
|
4696
4781
|
function isLocalPositionNed(msg) {
|
|
4697
4782
|
return msg.message_name === 'LOCAL_POSITION_NED';
|
|
4698
4783
|
}
|
|
4699
|
-
function isGlobalPositionInt(msg) {
|
|
4700
|
-
return msg.message_name === 'GLOBAL_POSITION_INT';
|
|
4701
|
-
}
|
|
4702
4784
|
function isRcChannelsScaled(msg) {
|
|
4703
4785
|
return msg.message_name === 'RC_CHANNELS_SCALED';
|
|
4704
4786
|
}
|
|
@@ -4981,9 +5063,6 @@ function isControlSystemState(msg) {
|
|
|
4981
5063
|
function isBatteryStatus(msg) {
|
|
4982
5064
|
return msg.message_name === 'BATTERY_STATUS';
|
|
4983
5065
|
}
|
|
4984
|
-
function isAutopilotVersion(msg) {
|
|
4985
|
-
return msg.message_name === 'AUTOPILOT_VERSION';
|
|
4986
|
-
}
|
|
4987
5066
|
function isLandingTarget(msg) {
|
|
4988
5067
|
return msg.message_name === 'LANDING_TARGET';
|
|
4989
5068
|
}
|
|
@@ -5146,9 +5225,15 @@ function isEscInfo(msg) {
|
|
|
5146
5225
|
function isEscStatus(msg) {
|
|
5147
5226
|
return msg.message_name === 'ESC_STATUS';
|
|
5148
5227
|
}
|
|
5228
|
+
function isAirspeed(msg) {
|
|
5229
|
+
return msg.message_name === 'AIRSPEED';
|
|
5230
|
+
}
|
|
5149
5231
|
function isWifiConfigAp(msg) {
|
|
5150
5232
|
return msg.message_name === 'WIFI_CONFIG_AP';
|
|
5151
5233
|
}
|
|
5234
|
+
function isProtocolVersion(msg) {
|
|
5235
|
+
return msg.message_name === 'PROTOCOL_VERSION';
|
|
5236
|
+
}
|
|
5152
5237
|
function isAisVessel(msg) {
|
|
5153
5238
|
return msg.message_name === 'AIS_VESSEL';
|
|
5154
5239
|
}
|
|
@@ -5200,6 +5285,9 @@ function isRawRpm(msg) {
|
|
|
5200
5285
|
function isUtmGlobalPosition(msg) {
|
|
5201
5286
|
return msg.message_name === 'UTM_GLOBAL_POSITION';
|
|
5202
5287
|
}
|
|
5288
|
+
function isParamError(msg) {
|
|
5289
|
+
return msg.message_name === 'PARAM_ERROR';
|
|
5290
|
+
}
|
|
5203
5291
|
function isDebugFloatArray(msg) {
|
|
5204
5292
|
return msg.message_name === 'DEBUG_FLOAT_ARRAY';
|
|
5205
5293
|
}
|
|
@@ -5209,6 +5297,9 @@ function isOrbitExecutionStatus(msg) {
|
|
|
5209
5297
|
function isSmartBatteryInfo(msg) {
|
|
5210
5298
|
return msg.message_name === 'SMART_BATTERY_INFO';
|
|
5211
5299
|
}
|
|
5300
|
+
function isFigureEightExecutionStatus(msg) {
|
|
5301
|
+
return msg.message_name === 'FIGURE_EIGHT_EXECUTION_STATUS';
|
|
5302
|
+
}
|
|
5212
5303
|
function isFuelStatus(msg) {
|
|
5213
5304
|
return msg.message_name === 'FUEL_STATUS';
|
|
5214
5305
|
}
|
|
@@ -5584,13 +5675,17 @@ function isEscTelemetry25To28(msg) {
|
|
|
5584
5675
|
function isEscTelemetry29To32(msg) {
|
|
5585
5676
|
return msg.message_name === 'ESC_TELEMETRY_29_TO_32';
|
|
5586
5677
|
}
|
|
5678
|
+
function isNamedValueString(msg) {
|
|
5679
|
+
return msg.message_name === 'NAMED_VALUE_STRING';
|
|
5680
|
+
}
|
|
5587
5681
|
|
|
5588
5682
|
// Auto-generated decoder and parser for ardupilotmega dialect
|
|
5589
5683
|
// Generated from MAVLink XML definitions
|
|
5590
5684
|
// Embedded MAVLink CRC implementation
|
|
5591
5685
|
const CRC_EXTRA = {
|
|
5592
5686
|
0: 50,
|
|
5593
|
-
|
|
5687
|
+
33: 104,
|
|
5688
|
+
148: 106,
|
|
5594
5689
|
1: 124,
|
|
5595
5690
|
2: 137,
|
|
5596
5691
|
4: 237,
|
|
@@ -5612,7 +5707,6 @@ const CRC_EXTRA = {
|
|
|
5612
5707
|
30: 39,
|
|
5613
5708
|
31: 246,
|
|
5614
5709
|
32: 185,
|
|
5615
|
-
33: 104,
|
|
5616
5710
|
34: 237,
|
|
5617
5711
|
35: 244,
|
|
5618
5712
|
36: 222,
|
|
@@ -5707,7 +5801,6 @@ const CRC_EXTRA = {
|
|
|
5707
5801
|
144: 158,
|
|
5708
5802
|
146: 152,
|
|
5709
5803
|
147: 143,
|
|
5710
|
-
148: 106,
|
|
5711
5804
|
149: 49,
|
|
5712
5805
|
162: 0,
|
|
5713
5806
|
192: 0,
|
|
@@ -5762,7 +5855,9 @@ const CRC_EXTRA = {
|
|
|
5762
5855
|
288: 0,
|
|
5763
5856
|
290: 0,
|
|
5764
5857
|
291: 0,
|
|
5858
|
+
295: 0,
|
|
5765
5859
|
299: 0,
|
|
5860
|
+
300: 0,
|
|
5766
5861
|
301: 0,
|
|
5767
5862
|
310: 0,
|
|
5768
5863
|
311: 0,
|
|
@@ -5780,9 +5875,11 @@ const CRC_EXTRA = {
|
|
|
5780
5875
|
336: 0,
|
|
5781
5876
|
339: 0,
|
|
5782
5877
|
340: 0,
|
|
5878
|
+
345: 0,
|
|
5783
5879
|
350: 0,
|
|
5784
5880
|
360: 0,
|
|
5785
5881
|
370: 0,
|
|
5882
|
+
361: 0,
|
|
5786
5883
|
371: 0,
|
|
5787
5884
|
372: 0,
|
|
5788
5885
|
373: 0,
|
|
@@ -5907,7 +6004,8 @@ const CRC_EXTRA = {
|
|
|
5907
6004
|
11041: 0,
|
|
5908
6005
|
11042: 0,
|
|
5909
6006
|
11043: 0,
|
|
5910
|
-
11044: 0
|
|
6007
|
+
11044: 0,
|
|
6008
|
+
11060: 0
|
|
5911
6009
|
};
|
|
5912
6010
|
class MAVLinkCRC {
|
|
5913
6011
|
static calculate(data, crcExtra) {
|
|
@@ -6070,7 +6168,11 @@ class DialectParser {
|
|
|
6070
6168
|
const result = {};
|
|
6071
6169
|
const view = new DataView(payload.buffer, payload.byteOffset, payload.byteLength);
|
|
6072
6170
|
let offset = 0;
|
|
6073
|
-
|
|
6171
|
+
// MAVLink v2 wire format: fields are sorted by type size (largest first)
|
|
6172
|
+
// Extension fields come after core fields and maintain their XML order
|
|
6173
|
+
// See: https://mavlink.io/en/guide/serialization.html#field_reordering
|
|
6174
|
+
const sortedFields = this.sortFieldsByWireOrder(fields);
|
|
6175
|
+
for (const field of sortedFields) {
|
|
6074
6176
|
if (offset >= payload.length) {
|
|
6075
6177
|
result[field.name] = this.getDefaultValue(field);
|
|
6076
6178
|
}
|
|
@@ -6082,6 +6184,43 @@ class DialectParser {
|
|
|
6082
6184
|
}
|
|
6083
6185
|
return result;
|
|
6084
6186
|
}
|
|
6187
|
+
// Sort fields by MAVLink v2 wire order: by type size descending, extensions last
|
|
6188
|
+
// Uses stable sort to preserve original order for same-size fields
|
|
6189
|
+
sortFieldsByWireOrder(fields) {
|
|
6190
|
+
// Separate core fields and extension fields
|
|
6191
|
+
const coreFields = [];
|
|
6192
|
+
const extensionFields = [];
|
|
6193
|
+
fields.forEach((field, index) => {
|
|
6194
|
+
if (field.extension) {
|
|
6195
|
+
extensionFields.push(field);
|
|
6196
|
+
}
|
|
6197
|
+
else {
|
|
6198
|
+
coreFields.push({ field, originalIndex: index });
|
|
6199
|
+
}
|
|
6200
|
+
});
|
|
6201
|
+
// Stable sort core fields by type size (descending)
|
|
6202
|
+
// Arrays are sorted by element type size, not total array size
|
|
6203
|
+
coreFields.sort((a, b) => {
|
|
6204
|
+
const sizeA = this.getFieldTypeSize(a.field);
|
|
6205
|
+
const sizeB = this.getFieldTypeSize(b.field);
|
|
6206
|
+
if (sizeB !== sizeA) {
|
|
6207
|
+
return sizeB - sizeA; // Descending order (largest first)
|
|
6208
|
+
}
|
|
6209
|
+
// Same size: maintain original XML order (stable sort)
|
|
6210
|
+
return a.originalIndex - b.originalIndex;
|
|
6211
|
+
});
|
|
6212
|
+
// Extension fields maintain their XML order and come after core fields
|
|
6213
|
+
return [...coreFields.map(c => c.field), ...extensionFields];
|
|
6214
|
+
}
|
|
6215
|
+
// Get the size of a single element of a field type (for wire order sorting)
|
|
6216
|
+
getFieldTypeSize(field) {
|
|
6217
|
+
let baseType = field.type;
|
|
6218
|
+
// Strip array notation to get base type (arrays sort by element type, not total size)
|
|
6219
|
+
if (baseType.includes('[') && baseType.includes(']')) {
|
|
6220
|
+
baseType = baseType.substring(0, baseType.indexOf('['));
|
|
6221
|
+
}
|
|
6222
|
+
return this.getSingleFieldSize(baseType);
|
|
6223
|
+
}
|
|
6085
6224
|
getDefaultValue(field) {
|
|
6086
6225
|
const isArray = field.arrayLength !== undefined && field.arrayLength > 1;
|
|
6087
6226
|
if (isArray) {
|
|
@@ -6288,15 +6427,19 @@ class DialectParser {
|
|
|
6288
6427
|
}
|
|
6289
6428
|
}
|
|
6290
6429
|
serializePayload(message, fields) {
|
|
6430
|
+
// MAVLink v2 wire format: fields must be sorted by type size (largest first)
|
|
6431
|
+
// Extension fields come after core fields and maintain their XML order
|
|
6432
|
+
// See: https://mavlink.io/en/guide/serialization.html#field_reordering
|
|
6433
|
+
const sortedFields = this.sortFieldsByWireOrder(fields);
|
|
6291
6434
|
// Calculate total payload size
|
|
6292
6435
|
let totalSize = 0;
|
|
6293
|
-
for (const field of
|
|
6436
|
+
for (const field of sortedFields) {
|
|
6294
6437
|
totalSize += this.getFieldSize(field);
|
|
6295
6438
|
}
|
|
6296
6439
|
const buffer = new ArrayBuffer(totalSize);
|
|
6297
6440
|
const view = new DataView(buffer);
|
|
6298
6441
|
let offset = 0;
|
|
6299
|
-
for (const field of
|
|
6442
|
+
for (const field of sortedFields) {
|
|
6300
6443
|
const value = message[field.name];
|
|
6301
6444
|
const bytesWritten = this.serializeField(view, offset, field, value);
|
|
6302
6445
|
offset += bytesWritten;
|
|
@@ -6308,8 +6451,7 @@ class DialectParser {
|
|
|
6308
6451
|
let corePayloadSize = 0;
|
|
6309
6452
|
let extensionStartOffset = 0;
|
|
6310
6453
|
let hasExtensions = false;
|
|
6311
|
-
|
|
6312
|
-
for (const field of fields) {
|
|
6454
|
+
for (const field of sortedFields) {
|
|
6313
6455
|
const fieldSize = this.getFieldSize(field);
|
|
6314
6456
|
// Check if this is an extension field using proper XML-based detection
|
|
6315
6457
|
const isExtensionField = field.extension === true;
|
|
@@ -6600,31 +6742,104 @@ const MESSAGE_DEFINITIONS = [
|
|
|
6600
6742
|
]
|
|
6601
6743
|
},
|
|
6602
6744
|
{
|
|
6603
|
-
id:
|
|
6604
|
-
name: '
|
|
6745
|
+
id: 33,
|
|
6746
|
+
name: 'GLOBAL_POSITION_INT',
|
|
6605
6747
|
fields: [
|
|
6606
6748
|
{
|
|
6607
|
-
name: '
|
|
6608
|
-
type: '
|
|
6609
|
-
arrayLength: 8,
|
|
6749
|
+
name: 'time_boot_ms',
|
|
6750
|
+
type: 'uint32_t',
|
|
6610
6751
|
},
|
|
6611
6752
|
{
|
|
6612
|
-
name: '
|
|
6613
|
-
type: '
|
|
6614
|
-
arrayLength: 8,
|
|
6753
|
+
name: 'lat',
|
|
6754
|
+
type: 'int32_t',
|
|
6615
6755
|
},
|
|
6616
6756
|
{
|
|
6617
|
-
name: '
|
|
6757
|
+
name: 'lon',
|
|
6758
|
+
type: 'int32_t',
|
|
6759
|
+
},
|
|
6760
|
+
{
|
|
6761
|
+
name: 'alt',
|
|
6762
|
+
type: 'int32_t',
|
|
6763
|
+
},
|
|
6764
|
+
{
|
|
6765
|
+
name: 'relative_alt',
|
|
6766
|
+
type: 'int32_t',
|
|
6767
|
+
},
|
|
6768
|
+
{
|
|
6769
|
+
name: 'vx',
|
|
6770
|
+
type: 'int16_t',
|
|
6771
|
+
},
|
|
6772
|
+
{
|
|
6773
|
+
name: 'vy',
|
|
6774
|
+
type: 'int16_t',
|
|
6775
|
+
},
|
|
6776
|
+
{
|
|
6777
|
+
name: 'vz',
|
|
6778
|
+
type: 'int16_t',
|
|
6779
|
+
},
|
|
6780
|
+
{
|
|
6781
|
+
name: 'hdg',
|
|
6618
6782
|
type: 'uint16_t',
|
|
6619
6783
|
},
|
|
6784
|
+
]
|
|
6785
|
+
},
|
|
6786
|
+
{
|
|
6787
|
+
id: 148,
|
|
6788
|
+
name: 'AUTOPILOT_VERSION',
|
|
6789
|
+
fields: [
|
|
6790
|
+
{
|
|
6791
|
+
name: 'capabilities',
|
|
6792
|
+
type: 'uint64_t',
|
|
6793
|
+
},
|
|
6620
6794
|
{
|
|
6621
|
-
name: '
|
|
6795
|
+
name: 'uid',
|
|
6796
|
+
type: 'uint64_t',
|
|
6797
|
+
},
|
|
6798
|
+
{
|
|
6799
|
+
name: 'flight_sw_version',
|
|
6800
|
+
type: 'uint32_t',
|
|
6801
|
+
},
|
|
6802
|
+
{
|
|
6803
|
+
name: 'middleware_sw_version',
|
|
6804
|
+
type: 'uint32_t',
|
|
6805
|
+
},
|
|
6806
|
+
{
|
|
6807
|
+
name: 'os_sw_version',
|
|
6808
|
+
type: 'uint32_t',
|
|
6809
|
+
},
|
|
6810
|
+
{
|
|
6811
|
+
name: 'board_version',
|
|
6812
|
+
type: 'uint32_t',
|
|
6813
|
+
},
|
|
6814
|
+
{
|
|
6815
|
+
name: 'vendor_id',
|
|
6622
6816
|
type: 'uint16_t',
|
|
6623
6817
|
},
|
|
6624
6818
|
{
|
|
6625
|
-
name: '
|
|
6819
|
+
name: 'product_id',
|
|
6626
6820
|
type: 'uint16_t',
|
|
6627
6821
|
},
|
|
6822
|
+
{
|
|
6823
|
+
name: 'flight_custom_version',
|
|
6824
|
+
type: 'uint8_t',
|
|
6825
|
+
arrayLength: 8,
|
|
6826
|
+
},
|
|
6827
|
+
{
|
|
6828
|
+
name: 'middleware_custom_version',
|
|
6829
|
+
type: 'uint8_t',
|
|
6830
|
+
arrayLength: 8,
|
|
6831
|
+
},
|
|
6832
|
+
{
|
|
6833
|
+
name: 'os_custom_version',
|
|
6834
|
+
type: 'uint8_t',
|
|
6835
|
+
arrayLength: 8,
|
|
6836
|
+
},
|
|
6837
|
+
{
|
|
6838
|
+
name: 'uid2',
|
|
6839
|
+
type: 'uint8_t',
|
|
6840
|
+
arrayLength: 18,
|
|
6841
|
+
extension: true,
|
|
6842
|
+
},
|
|
6628
6843
|
]
|
|
6629
6844
|
},
|
|
6630
6845
|
{
|
|
@@ -6740,11 +6955,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
6740
6955
|
id: 5,
|
|
6741
6956
|
name: 'CHANGE_OPERATOR_CONTROL',
|
|
6742
6957
|
fields: [
|
|
6743
|
-
{
|
|
6744
|
-
name: 'passkey',
|
|
6745
|
-
type: 'char',
|
|
6746
|
-
arrayLength: 25,
|
|
6747
|
-
},
|
|
6748
6958
|
{
|
|
6749
6959
|
name: 'target_system',
|
|
6750
6960
|
type: 'uint8_t',
|
|
@@ -6757,6 +6967,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
6757
6967
|
name: 'version',
|
|
6758
6968
|
type: 'uint8_t',
|
|
6759
6969
|
},
|
|
6970
|
+
{
|
|
6971
|
+
name: 'passkey',
|
|
6972
|
+
type: 'char',
|
|
6973
|
+
arrayLength: 25,
|
|
6974
|
+
},
|
|
6760
6975
|
]
|
|
6761
6976
|
},
|
|
6762
6977
|
{
|
|
@@ -6860,11 +7075,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
6860
7075
|
id: 20,
|
|
6861
7076
|
name: 'PARAM_REQUEST_READ',
|
|
6862
7077
|
fields: [
|
|
6863
|
-
{
|
|
6864
|
-
name: 'param_id',
|
|
6865
|
-
type: 'char',
|
|
6866
|
-
arrayLength: 16,
|
|
6867
|
-
},
|
|
6868
7078
|
{
|
|
6869
7079
|
name: 'param_index',
|
|
6870
7080
|
type: 'int16_t',
|
|
@@ -6877,6 +7087,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
6877
7087
|
name: 'target_component',
|
|
6878
7088
|
type: 'uint8_t',
|
|
6879
7089
|
},
|
|
7090
|
+
{
|
|
7091
|
+
name: 'param_id',
|
|
7092
|
+
type: 'char',
|
|
7093
|
+
arrayLength: 16,
|
|
7094
|
+
},
|
|
6880
7095
|
]
|
|
6881
7096
|
},
|
|
6882
7097
|
{
|
|
@@ -6897,11 +7112,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
6897
7112
|
id: 22,
|
|
6898
7113
|
name: 'PARAM_VALUE',
|
|
6899
7114
|
fields: [
|
|
6900
|
-
{
|
|
6901
|
-
name: 'param_id',
|
|
6902
|
-
type: 'char',
|
|
6903
|
-
arrayLength: 16,
|
|
6904
|
-
},
|
|
6905
7115
|
{
|
|
6906
7116
|
name: 'param_value',
|
|
6907
7117
|
type: 'float',
|
|
@@ -6914,6 +7124,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
6914
7124
|
name: 'param_index',
|
|
6915
7125
|
type: 'uint16_t',
|
|
6916
7126
|
},
|
|
7127
|
+
{
|
|
7128
|
+
name: 'param_id',
|
|
7129
|
+
type: 'char',
|
|
7130
|
+
arrayLength: 16,
|
|
7131
|
+
},
|
|
6917
7132
|
{
|
|
6918
7133
|
name: 'param_type',
|
|
6919
7134
|
type: 'uint8_t',
|
|
@@ -6924,11 +7139,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
6924
7139
|
id: 23,
|
|
6925
7140
|
name: 'PARAM_SET',
|
|
6926
7141
|
fields: [
|
|
6927
|
-
{
|
|
6928
|
-
name: 'param_id',
|
|
6929
|
-
type: 'char',
|
|
6930
|
-
arrayLength: 16,
|
|
6931
|
-
},
|
|
6932
7142
|
{
|
|
6933
7143
|
name: 'param_value',
|
|
6934
7144
|
type: 'float',
|
|
@@ -6941,6 +7151,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
6941
7151
|
name: 'target_component',
|
|
6942
7152
|
type: 'uint8_t',
|
|
6943
7153
|
},
|
|
7154
|
+
{
|
|
7155
|
+
name: 'param_id',
|
|
7156
|
+
type: 'char',
|
|
7157
|
+
arrayLength: 16,
|
|
7158
|
+
},
|
|
6944
7159
|
{
|
|
6945
7160
|
name: 'param_type',
|
|
6946
7161
|
type: 'uint8_t',
|
|
@@ -7027,6 +7242,10 @@ const MESSAGE_DEFINITIONS = [
|
|
|
7027
7242
|
id: 25,
|
|
7028
7243
|
name: 'GPS_STATUS',
|
|
7029
7244
|
fields: [
|
|
7245
|
+
{
|
|
7246
|
+
name: 'satellites_visible',
|
|
7247
|
+
type: 'uint8_t',
|
|
7248
|
+
},
|
|
7030
7249
|
{
|
|
7031
7250
|
name: 'satellite_prn',
|
|
7032
7251
|
type: 'uint8_t',
|
|
@@ -7052,10 +7271,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
7052
7271
|
type: 'uint8_t',
|
|
7053
7272
|
arrayLength: 20,
|
|
7054
7273
|
},
|
|
7055
|
-
{
|
|
7056
|
-
name: 'satellites_visible',
|
|
7057
|
-
type: 'uint8_t',
|
|
7058
|
-
},
|
|
7059
7274
|
]
|
|
7060
7275
|
},
|
|
7061
7276
|
{
|
|
@@ -7330,48 +7545,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
7330
7545
|
},
|
|
7331
7546
|
]
|
|
7332
7547
|
},
|
|
7333
|
-
{
|
|
7334
|
-
id: 33,
|
|
7335
|
-
name: 'GLOBAL_POSITION_INT',
|
|
7336
|
-
fields: [
|
|
7337
|
-
{
|
|
7338
|
-
name: 'time_boot_ms',
|
|
7339
|
-
type: 'uint32_t',
|
|
7340
|
-
},
|
|
7341
|
-
{
|
|
7342
|
-
name: 'lat',
|
|
7343
|
-
type: 'int32_t',
|
|
7344
|
-
},
|
|
7345
|
-
{
|
|
7346
|
-
name: 'lon',
|
|
7347
|
-
type: 'int32_t',
|
|
7348
|
-
},
|
|
7349
|
-
{
|
|
7350
|
-
name: 'alt',
|
|
7351
|
-
type: 'int32_t',
|
|
7352
|
-
},
|
|
7353
|
-
{
|
|
7354
|
-
name: 'relative_alt',
|
|
7355
|
-
type: 'int32_t',
|
|
7356
|
-
},
|
|
7357
|
-
{
|
|
7358
|
-
name: 'vx',
|
|
7359
|
-
type: 'int16_t',
|
|
7360
|
-
},
|
|
7361
|
-
{
|
|
7362
|
-
name: 'vy',
|
|
7363
|
-
type: 'int16_t',
|
|
7364
|
-
},
|
|
7365
|
-
{
|
|
7366
|
-
name: 'vz',
|
|
7367
|
-
type: 'int16_t',
|
|
7368
|
-
},
|
|
7369
|
-
{
|
|
7370
|
-
name: 'hdg',
|
|
7371
|
-
type: 'uint16_t',
|
|
7372
|
-
},
|
|
7373
|
-
]
|
|
7374
|
-
},
|
|
7375
7548
|
{
|
|
7376
7549
|
id: 34,
|
|
7377
7550
|
name: 'RC_CHANNELS_SCALED',
|
|
@@ -7918,11 +8091,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
7918
8091
|
id: 50,
|
|
7919
8092
|
name: 'PARAM_MAP_RC',
|
|
7920
8093
|
fields: [
|
|
7921
|
-
{
|
|
7922
|
-
name: 'param_id',
|
|
7923
|
-
type: 'char',
|
|
7924
|
-
arrayLength: 16,
|
|
7925
|
-
},
|
|
7926
8094
|
{
|
|
7927
8095
|
name: 'param_value0',
|
|
7928
8096
|
type: 'float',
|
|
@@ -7951,6 +8119,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
7951
8119
|
name: 'target_component',
|
|
7952
8120
|
type: 'uint8_t',
|
|
7953
8121
|
},
|
|
8122
|
+
{
|
|
8123
|
+
name: 'param_id',
|
|
8124
|
+
type: 'char',
|
|
8125
|
+
arrayLength: 16,
|
|
8126
|
+
},
|
|
7954
8127
|
{
|
|
7955
8128
|
name: 'parameter_rc_channel_index',
|
|
7956
8129
|
type: 'uint8_t',
|
|
@@ -8061,19 +8234,14 @@ const MESSAGE_DEFINITIONS = [
|
|
|
8061
8234
|
name: 'ATTITUDE_QUATERNION_COV',
|
|
8062
8235
|
fields: [
|
|
8063
8236
|
{
|
|
8064
|
-
name: '
|
|
8065
|
-
type: '
|
|
8066
|
-
arrayLength: 9,
|
|
8237
|
+
name: 'time_usec',
|
|
8238
|
+
type: 'uint64_t',
|
|
8067
8239
|
},
|
|
8068
8240
|
{
|
|
8069
8241
|
name: 'q',
|
|
8070
8242
|
type: 'float',
|
|
8071
8243
|
arrayLength: 4,
|
|
8072
8244
|
},
|
|
8073
|
-
{
|
|
8074
|
-
name: 'time_usec',
|
|
8075
|
-
type: 'uint64_t',
|
|
8076
|
-
},
|
|
8077
8245
|
{
|
|
8078
8246
|
name: 'rollspeed',
|
|
8079
8247
|
type: 'float',
|
|
@@ -8086,6 +8254,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
8086
8254
|
name: 'yawspeed',
|
|
8087
8255
|
type: 'float',
|
|
8088
8256
|
},
|
|
8257
|
+
{
|
|
8258
|
+
name: 'covariance',
|
|
8259
|
+
type: 'float',
|
|
8260
|
+
arrayLength: 9,
|
|
8261
|
+
},
|
|
8089
8262
|
]
|
|
8090
8263
|
},
|
|
8091
8264
|
{
|
|
@@ -8130,11 +8303,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
8130
8303
|
id: 63,
|
|
8131
8304
|
name: 'GLOBAL_POSITION_INT_COV',
|
|
8132
8305
|
fields: [
|
|
8133
|
-
{
|
|
8134
|
-
name: 'covariance',
|
|
8135
|
-
type: 'float',
|
|
8136
|
-
arrayLength: 36,
|
|
8137
|
-
},
|
|
8138
8306
|
{
|
|
8139
8307
|
name: 'time_usec',
|
|
8140
8308
|
type: 'uint64_t',
|
|
@@ -8167,6 +8335,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
8167
8335
|
name: 'vz',
|
|
8168
8336
|
type: 'float',
|
|
8169
8337
|
},
|
|
8338
|
+
{
|
|
8339
|
+
name: 'covariance',
|
|
8340
|
+
type: 'float',
|
|
8341
|
+
arrayLength: 36,
|
|
8342
|
+
},
|
|
8170
8343
|
{
|
|
8171
8344
|
name: 'estimator_type',
|
|
8172
8345
|
type: 'uint8_t',
|
|
@@ -8177,11 +8350,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
8177
8350
|
id: 64,
|
|
8178
8351
|
name: 'LOCAL_POSITION_NED_COV',
|
|
8179
8352
|
fields: [
|
|
8180
|
-
{
|
|
8181
|
-
name: 'covariance',
|
|
8182
|
-
type: 'float',
|
|
8183
|
-
arrayLength: 45,
|
|
8184
|
-
},
|
|
8185
8353
|
{
|
|
8186
8354
|
name: 'time_usec',
|
|
8187
8355
|
type: 'uint64_t',
|
|
@@ -8222,6 +8390,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
8222
8390
|
name: 'az',
|
|
8223
8391
|
type: 'float',
|
|
8224
8392
|
},
|
|
8393
|
+
{
|
|
8394
|
+
name: 'covariance',
|
|
8395
|
+
type: 'float',
|
|
8396
|
+
arrayLength: 45,
|
|
8397
|
+
},
|
|
8225
8398
|
{
|
|
8226
8399
|
name: 'estimator_type',
|
|
8227
8400
|
type: 'uint8_t',
|
|
@@ -8833,15 +9006,15 @@ const MESSAGE_DEFINITIONS = [
|
|
|
8833
9006
|
id: 82,
|
|
8834
9007
|
name: 'SET_ATTITUDE_TARGET',
|
|
8835
9008
|
fields: [
|
|
9009
|
+
{
|
|
9010
|
+
name: 'time_boot_ms',
|
|
9011
|
+
type: 'uint32_t',
|
|
9012
|
+
},
|
|
8836
9013
|
{
|
|
8837
9014
|
name: 'q',
|
|
8838
9015
|
type: 'float',
|
|
8839
9016
|
arrayLength: 4,
|
|
8840
9017
|
},
|
|
8841
|
-
{
|
|
8842
|
-
name: 'time_boot_ms',
|
|
8843
|
-
type: 'uint32_t',
|
|
8844
|
-
},
|
|
8845
9018
|
{
|
|
8846
9019
|
name: 'body_roll_rate',
|
|
8847
9020
|
type: 'float',
|
|
@@ -8882,15 +9055,15 @@ const MESSAGE_DEFINITIONS = [
|
|
|
8882
9055
|
id: 83,
|
|
8883
9056
|
name: 'ATTITUDE_TARGET',
|
|
8884
9057
|
fields: [
|
|
9058
|
+
{
|
|
9059
|
+
name: 'time_boot_ms',
|
|
9060
|
+
type: 'uint32_t',
|
|
9061
|
+
},
|
|
8885
9062
|
{
|
|
8886
9063
|
name: 'q',
|
|
8887
9064
|
type: 'float',
|
|
8888
9065
|
arrayLength: 4,
|
|
8889
9066
|
},
|
|
8890
|
-
{
|
|
8891
|
-
name: 'time_boot_ms',
|
|
8892
|
-
type: 'uint32_t',
|
|
8893
|
-
},
|
|
8894
9067
|
{
|
|
8895
9068
|
name: 'body_roll_rate',
|
|
8896
9069
|
type: 'float',
|
|
@@ -9397,11 +9570,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
9397
9570
|
id: 93,
|
|
9398
9571
|
name: 'HIL_ACTUATOR_CONTROLS',
|
|
9399
9572
|
fields: [
|
|
9400
|
-
{
|
|
9401
|
-
name: 'controls',
|
|
9402
|
-
type: 'float',
|
|
9403
|
-
arrayLength: 16,
|
|
9404
|
-
},
|
|
9405
9573
|
{
|
|
9406
9574
|
name: 'time_usec',
|
|
9407
9575
|
type: 'uint64_t',
|
|
@@ -9410,6 +9578,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
9410
9578
|
name: 'flags',
|
|
9411
9579
|
type: 'uint64_t',
|
|
9412
9580
|
},
|
|
9581
|
+
{
|
|
9582
|
+
name: 'controls',
|
|
9583
|
+
type: 'float',
|
|
9584
|
+
arrayLength: 16,
|
|
9585
|
+
},
|
|
9413
9586
|
{
|
|
9414
9587
|
name: 'mode',
|
|
9415
9588
|
type: 'uint8_t',
|
|
@@ -9961,11 +10134,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
9961
10134
|
id: 110,
|
|
9962
10135
|
name: 'FILE_TRANSFER_PROTOCOL',
|
|
9963
10136
|
fields: [
|
|
9964
|
-
{
|
|
9965
|
-
name: 'payload',
|
|
9966
|
-
type: 'uint8_t',
|
|
9967
|
-
arrayLength: 251,
|
|
9968
|
-
},
|
|
9969
10137
|
{
|
|
9970
10138
|
name: 'target_network',
|
|
9971
10139
|
type: 'uint8_t',
|
|
@@ -9978,6 +10146,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
9978
10146
|
name: 'target_component',
|
|
9979
10147
|
type: 'uint8_t',
|
|
9980
10148
|
},
|
|
10149
|
+
{
|
|
10150
|
+
name: 'payload',
|
|
10151
|
+
type: 'uint8_t',
|
|
10152
|
+
arrayLength: 251,
|
|
10153
|
+
},
|
|
9981
10154
|
]
|
|
9982
10155
|
},
|
|
9983
10156
|
{
|
|
@@ -10144,15 +10317,15 @@ const MESSAGE_DEFINITIONS = [
|
|
|
10144
10317
|
id: 115,
|
|
10145
10318
|
name: 'HIL_STATE_QUATERNION',
|
|
10146
10319
|
fields: [
|
|
10320
|
+
{
|
|
10321
|
+
name: 'time_usec',
|
|
10322
|
+
type: 'uint64_t',
|
|
10323
|
+
},
|
|
10147
10324
|
{
|
|
10148
10325
|
name: 'attitude_quaternion',
|
|
10149
10326
|
type: 'float',
|
|
10150
10327
|
arrayLength: 4,
|
|
10151
10328
|
},
|
|
10152
|
-
{
|
|
10153
|
-
name: 'time_usec',
|
|
10154
|
-
type: 'uint64_t',
|
|
10155
|
-
},
|
|
10156
10329
|
{
|
|
10157
10330
|
name: 'rollspeed',
|
|
10158
10331
|
type: 'float',
|
|
@@ -10340,11 +10513,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
10340
10513
|
id: 120,
|
|
10341
10514
|
name: 'LOG_DATA',
|
|
10342
10515
|
fields: [
|
|
10343
|
-
{
|
|
10344
|
-
name: 'data',
|
|
10345
|
-
type: 'uint8_t',
|
|
10346
|
-
arrayLength: 90,
|
|
10347
|
-
},
|
|
10348
10516
|
{
|
|
10349
10517
|
name: 'ofs',
|
|
10350
10518
|
type: 'uint32_t',
|
|
@@ -10357,6 +10525,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
10357
10525
|
name: 'count',
|
|
10358
10526
|
type: 'uint8_t',
|
|
10359
10527
|
},
|
|
10528
|
+
{
|
|
10529
|
+
name: 'data',
|
|
10530
|
+
type: 'uint8_t',
|
|
10531
|
+
arrayLength: 90,
|
|
10532
|
+
},
|
|
10360
10533
|
]
|
|
10361
10534
|
},
|
|
10362
10535
|
{
|
|
@@ -10391,11 +10564,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
10391
10564
|
id: 123,
|
|
10392
10565
|
name: 'GPS_INJECT_DATA',
|
|
10393
10566
|
fields: [
|
|
10394
|
-
{
|
|
10395
|
-
name: 'data',
|
|
10396
|
-
type: 'uint8_t',
|
|
10397
|
-
arrayLength: 110,
|
|
10398
|
-
},
|
|
10399
10567
|
{
|
|
10400
10568
|
name: 'target_system',
|
|
10401
10569
|
type: 'uint8_t',
|
|
@@ -10408,6 +10576,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
10408
10576
|
name: 'len',
|
|
10409
10577
|
type: 'uint8_t',
|
|
10410
10578
|
},
|
|
10579
|
+
{
|
|
10580
|
+
name: 'data',
|
|
10581
|
+
type: 'uint8_t',
|
|
10582
|
+
arrayLength: 110,
|
|
10583
|
+
},
|
|
10411
10584
|
]
|
|
10412
10585
|
},
|
|
10413
10586
|
{
|
|
@@ -10516,11 +10689,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
10516
10689
|
id: 126,
|
|
10517
10690
|
name: 'SERIAL_CONTROL',
|
|
10518
10691
|
fields: [
|
|
10519
|
-
{
|
|
10520
|
-
name: 'data',
|
|
10521
|
-
type: 'uint8_t',
|
|
10522
|
-
arrayLength: 70,
|
|
10523
|
-
},
|
|
10524
10692
|
{
|
|
10525
10693
|
name: 'baudrate',
|
|
10526
10694
|
type: 'uint32_t',
|
|
@@ -10541,6 +10709,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
10541
10709
|
name: 'count',
|
|
10542
10710
|
type: 'uint8_t',
|
|
10543
10711
|
},
|
|
10712
|
+
{
|
|
10713
|
+
name: 'data',
|
|
10714
|
+
type: 'uint8_t',
|
|
10715
|
+
arrayLength: 70,
|
|
10716
|
+
},
|
|
10544
10717
|
{
|
|
10545
10718
|
name: 'target_system',
|
|
10546
10719
|
type: 'uint8_t',
|
|
@@ -10758,15 +10931,15 @@ const MESSAGE_DEFINITIONS = [
|
|
|
10758
10931
|
id: 131,
|
|
10759
10932
|
name: 'ENCAPSULATED_DATA',
|
|
10760
10933
|
fields: [
|
|
10934
|
+
{
|
|
10935
|
+
name: 'seqnr',
|
|
10936
|
+
type: 'uint16_t',
|
|
10937
|
+
},
|
|
10761
10938
|
{
|
|
10762
10939
|
name: 'data',
|
|
10763
10940
|
type: 'uint8_t',
|
|
10764
10941
|
arrayLength: 253,
|
|
10765
10942
|
},
|
|
10766
|
-
{
|
|
10767
|
-
name: 'seqnr',
|
|
10768
|
-
type: 'uint16_t',
|
|
10769
|
-
},
|
|
10770
10943
|
]
|
|
10771
10944
|
},
|
|
10772
10945
|
{
|
|
@@ -10854,11 +11027,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
10854
11027
|
id: 134,
|
|
10855
11028
|
name: 'TERRAIN_DATA',
|
|
10856
11029
|
fields: [
|
|
10857
|
-
{
|
|
10858
|
-
name: 'data',
|
|
10859
|
-
type: 'int16_t',
|
|
10860
|
-
arrayLength: 16,
|
|
10861
|
-
},
|
|
10862
11030
|
{
|
|
10863
11031
|
name: 'lat',
|
|
10864
11032
|
type: 'int32_t',
|
|
@@ -10871,6 +11039,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
10871
11039
|
name: 'grid_spacing',
|
|
10872
11040
|
type: 'uint16_t',
|
|
10873
11041
|
},
|
|
11042
|
+
{
|
|
11043
|
+
name: 'data',
|
|
11044
|
+
type: 'int16_t',
|
|
11045
|
+
arrayLength: 16,
|
|
11046
|
+
},
|
|
10874
11047
|
{
|
|
10875
11048
|
name: 'gridbit',
|
|
10876
11049
|
type: 'uint8_t',
|
|
@@ -10956,15 +11129,15 @@ const MESSAGE_DEFINITIONS = [
|
|
|
10956
11129
|
id: 138,
|
|
10957
11130
|
name: 'ATT_POS_MOCAP',
|
|
10958
11131
|
fields: [
|
|
11132
|
+
{
|
|
11133
|
+
name: 'time_usec',
|
|
11134
|
+
type: 'uint64_t',
|
|
11135
|
+
},
|
|
10959
11136
|
{
|
|
10960
11137
|
name: 'q',
|
|
10961
11138
|
type: 'float',
|
|
10962
11139
|
arrayLength: 4,
|
|
10963
11140
|
},
|
|
10964
|
-
{
|
|
10965
|
-
name: 'time_usec',
|
|
10966
|
-
type: 'uint64_t',
|
|
10967
|
-
},
|
|
10968
11141
|
{
|
|
10969
11142
|
name: 'x',
|
|
10970
11143
|
type: 'float',
|
|
@@ -10989,15 +11162,15 @@ const MESSAGE_DEFINITIONS = [
|
|
|
10989
11162
|
id: 139,
|
|
10990
11163
|
name: 'SET_ACTUATOR_CONTROL_TARGET',
|
|
10991
11164
|
fields: [
|
|
11165
|
+
{
|
|
11166
|
+
name: 'time_usec',
|
|
11167
|
+
type: 'uint64_t',
|
|
11168
|
+
},
|
|
10992
11169
|
{
|
|
10993
11170
|
name: 'controls',
|
|
10994
11171
|
type: 'float',
|
|
10995
11172
|
arrayLength: 8,
|
|
10996
11173
|
},
|
|
10997
|
-
{
|
|
10998
|
-
name: 'time_usec',
|
|
10999
|
-
type: 'uint64_t',
|
|
11000
|
-
},
|
|
11001
11174
|
{
|
|
11002
11175
|
name: 'group_mlx',
|
|
11003
11176
|
type: 'uint8_t',
|
|
@@ -11016,15 +11189,15 @@ const MESSAGE_DEFINITIONS = [
|
|
|
11016
11189
|
id: 140,
|
|
11017
11190
|
name: 'ACTUATOR_CONTROL_TARGET',
|
|
11018
11191
|
fields: [
|
|
11192
|
+
{
|
|
11193
|
+
name: 'time_usec',
|
|
11194
|
+
type: 'uint64_t',
|
|
11195
|
+
},
|
|
11019
11196
|
{
|
|
11020
11197
|
name: 'controls',
|
|
11021
11198
|
type: 'float',
|
|
11022
11199
|
arrayLength: 8,
|
|
11023
11200
|
},
|
|
11024
|
-
{
|
|
11025
|
-
name: 'time_usec',
|
|
11026
|
-
type: 'uint64_t',
|
|
11027
|
-
},
|
|
11028
11201
|
{
|
|
11029
11202
|
name: 'group_mlx',
|
|
11030
11203
|
type: 'uint8_t',
|
|
@@ -11070,26 +11243,26 @@ const MESSAGE_DEFINITIONS = [
|
|
|
11070
11243
|
name: 'RESOURCE_REQUEST',
|
|
11071
11244
|
fields: [
|
|
11072
11245
|
{
|
|
11073
|
-
name: '
|
|
11246
|
+
name: 'request_id',
|
|
11074
11247
|
type: 'uint8_t',
|
|
11075
|
-
arrayLength: 120,
|
|
11076
11248
|
},
|
|
11077
11249
|
{
|
|
11078
|
-
name: '
|
|
11250
|
+
name: 'uri_type',
|
|
11079
11251
|
type: 'uint8_t',
|
|
11080
|
-
arrayLength: 120,
|
|
11081
11252
|
},
|
|
11082
11253
|
{
|
|
11083
|
-
name: '
|
|
11254
|
+
name: 'uri',
|
|
11084
11255
|
type: 'uint8_t',
|
|
11256
|
+
arrayLength: 120,
|
|
11085
11257
|
},
|
|
11086
11258
|
{
|
|
11087
|
-
name: '
|
|
11259
|
+
name: 'transfer_type',
|
|
11088
11260
|
type: 'uint8_t',
|
|
11089
11261
|
},
|
|
11090
11262
|
{
|
|
11091
|
-
name: '
|
|
11263
|
+
name: 'storage',
|
|
11092
11264
|
type: 'uint8_t',
|
|
11265
|
+
arrayLength: 120,
|
|
11093
11266
|
},
|
|
11094
11267
|
]
|
|
11095
11268
|
},
|
|
@@ -11125,49 +11298,49 @@ const MESSAGE_DEFINITIONS = [
|
|
|
11125
11298
|
name: 'FOLLOW_TARGET',
|
|
11126
11299
|
fields: [
|
|
11127
11300
|
{
|
|
11128
|
-
name: '
|
|
11129
|
-
type: '
|
|
11130
|
-
arrayLength: 4,
|
|
11301
|
+
name: 'timestamp',
|
|
11302
|
+
type: 'uint64_t',
|
|
11131
11303
|
},
|
|
11132
11304
|
{
|
|
11133
|
-
name: '
|
|
11134
|
-
type: '
|
|
11135
|
-
arrayLength: 3,
|
|
11305
|
+
name: 'custom_state',
|
|
11306
|
+
type: 'uint64_t',
|
|
11136
11307
|
},
|
|
11137
11308
|
{
|
|
11138
|
-
name: '
|
|
11139
|
-
type: '
|
|
11140
|
-
|
|
11141
|
-
},
|
|
11309
|
+
name: 'lat',
|
|
11310
|
+
type: 'int32_t',
|
|
11311
|
+
},
|
|
11142
11312
|
{
|
|
11143
|
-
name: '
|
|
11144
|
-
type: '
|
|
11145
|
-
arrayLength: 3,
|
|
11313
|
+
name: 'lon',
|
|
11314
|
+
type: 'int32_t',
|
|
11146
11315
|
},
|
|
11147
11316
|
{
|
|
11148
|
-
name: '
|
|
11317
|
+
name: 'alt',
|
|
11149
11318
|
type: 'float',
|
|
11150
|
-
arrayLength: 3,
|
|
11151
11319
|
},
|
|
11152
11320
|
{
|
|
11153
|
-
name: '
|
|
11154
|
-
type: '
|
|
11321
|
+
name: 'vel',
|
|
11322
|
+
type: 'float',
|
|
11323
|
+
arrayLength: 3,
|
|
11155
11324
|
},
|
|
11156
11325
|
{
|
|
11157
|
-
name: '
|
|
11158
|
-
type: '
|
|
11326
|
+
name: 'acc',
|
|
11327
|
+
type: 'float',
|
|
11328
|
+
arrayLength: 3,
|
|
11159
11329
|
},
|
|
11160
11330
|
{
|
|
11161
|
-
name: '
|
|
11162
|
-
type: '
|
|
11331
|
+
name: 'attitude_q',
|
|
11332
|
+
type: 'float',
|
|
11333
|
+
arrayLength: 4,
|
|
11163
11334
|
},
|
|
11164
11335
|
{
|
|
11165
|
-
name: '
|
|
11166
|
-
type: '
|
|
11336
|
+
name: 'rates',
|
|
11337
|
+
type: 'float',
|
|
11338
|
+
arrayLength: 3,
|
|
11167
11339
|
},
|
|
11168
11340
|
{
|
|
11169
|
-
name: '
|
|
11341
|
+
name: 'position_cov',
|
|
11170
11342
|
type: 'float',
|
|
11343
|
+
arrayLength: 3,
|
|
11171
11344
|
},
|
|
11172
11345
|
{
|
|
11173
11346
|
name: 'est_capabilities',
|
|
@@ -11179,21 +11352,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
11179
11352
|
id: 146,
|
|
11180
11353
|
name: 'CONTROL_SYSTEM_STATE',
|
|
11181
11354
|
fields: [
|
|
11182
|
-
{
|
|
11183
|
-
name: 'q',
|
|
11184
|
-
type: 'float',
|
|
11185
|
-
arrayLength: 4,
|
|
11186
|
-
},
|
|
11187
|
-
{
|
|
11188
|
-
name: 'vel_variance',
|
|
11189
|
-
type: 'float',
|
|
11190
|
-
arrayLength: 3,
|
|
11191
|
-
},
|
|
11192
|
-
{
|
|
11193
|
-
name: 'pos_variance',
|
|
11194
|
-
type: 'float',
|
|
11195
|
-
arrayLength: 3,
|
|
11196
|
-
},
|
|
11197
11355
|
{
|
|
11198
11356
|
name: 'time_usec',
|
|
11199
11357
|
type: 'uint64_t',
|
|
@@ -11238,6 +11396,21 @@ const MESSAGE_DEFINITIONS = [
|
|
|
11238
11396
|
name: 'airspeed',
|
|
11239
11397
|
type: 'float',
|
|
11240
11398
|
},
|
|
11399
|
+
{
|
|
11400
|
+
name: 'vel_variance',
|
|
11401
|
+
type: 'float',
|
|
11402
|
+
arrayLength: 3,
|
|
11403
|
+
},
|
|
11404
|
+
{
|
|
11405
|
+
name: 'pos_variance',
|
|
11406
|
+
type: 'float',
|
|
11407
|
+
arrayLength: 3,
|
|
11408
|
+
},
|
|
11409
|
+
{
|
|
11410
|
+
name: 'q',
|
|
11411
|
+
type: 'float',
|
|
11412
|
+
arrayLength: 4,
|
|
11413
|
+
},
|
|
11241
11414
|
{
|
|
11242
11415
|
name: 'roll_rate',
|
|
11243
11416
|
type: 'float',
|
|
@@ -11256,11 +11429,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
11256
11429
|
id: 147,
|
|
11257
11430
|
name: 'BATTERY_STATUS',
|
|
11258
11431
|
fields: [
|
|
11259
|
-
{
|
|
11260
|
-
name: 'voltages',
|
|
11261
|
-
type: 'uint16_t',
|
|
11262
|
-
arrayLength: 10,
|
|
11263
|
-
},
|
|
11264
11432
|
{
|
|
11265
11433
|
name: 'current_consumed',
|
|
11266
11434
|
type: 'int32_t',
|
|
@@ -11273,6 +11441,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
11273
11441
|
name: 'temperature',
|
|
11274
11442
|
type: 'int16_t',
|
|
11275
11443
|
},
|
|
11444
|
+
{
|
|
11445
|
+
name: 'voltages',
|
|
11446
|
+
type: 'uint16_t',
|
|
11447
|
+
arrayLength: 10,
|
|
11448
|
+
},
|
|
11276
11449
|
{
|
|
11277
11450
|
name: 'current_battery',
|
|
11278
11451
|
type: 'int16_t',
|
|
@@ -11321,65 +11494,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
11321
11494
|
},
|
|
11322
11495
|
]
|
|
11323
11496
|
},
|
|
11324
|
-
{
|
|
11325
|
-
id: 148,
|
|
11326
|
-
name: 'AUTOPILOT_VERSION',
|
|
11327
|
-
fields: [
|
|
11328
|
-
{
|
|
11329
|
-
name: 'capabilities',
|
|
11330
|
-
type: 'uint64_t',
|
|
11331
|
-
},
|
|
11332
|
-
{
|
|
11333
|
-
name: 'flight_custom_version',
|
|
11334
|
-
type: 'uint8_t',
|
|
11335
|
-
arrayLength: 8,
|
|
11336
|
-
},
|
|
11337
|
-
{
|
|
11338
|
-
name: 'middleware_custom_version',
|
|
11339
|
-
type: 'uint8_t',
|
|
11340
|
-
arrayLength: 8,
|
|
11341
|
-
},
|
|
11342
|
-
{
|
|
11343
|
-
name: 'os_custom_version',
|
|
11344
|
-
type: 'uint8_t',
|
|
11345
|
-
arrayLength: 8,
|
|
11346
|
-
},
|
|
11347
|
-
{
|
|
11348
|
-
name: 'uid',
|
|
11349
|
-
type: 'uint64_t',
|
|
11350
|
-
},
|
|
11351
|
-
{
|
|
11352
|
-
name: 'flight_sw_version',
|
|
11353
|
-
type: 'uint32_t',
|
|
11354
|
-
},
|
|
11355
|
-
{
|
|
11356
|
-
name: 'middleware_sw_version',
|
|
11357
|
-
type: 'uint32_t',
|
|
11358
|
-
},
|
|
11359
|
-
{
|
|
11360
|
-
name: 'os_sw_version',
|
|
11361
|
-
type: 'uint32_t',
|
|
11362
|
-
},
|
|
11363
|
-
{
|
|
11364
|
-
name: 'board_version',
|
|
11365
|
-
type: 'uint32_t',
|
|
11366
|
-
},
|
|
11367
|
-
{
|
|
11368
|
-
name: 'vendor_id',
|
|
11369
|
-
type: 'uint16_t',
|
|
11370
|
-
},
|
|
11371
|
-
{
|
|
11372
|
-
name: 'product_id',
|
|
11373
|
-
type: 'uint16_t',
|
|
11374
|
-
},
|
|
11375
|
-
{
|
|
11376
|
-
name: 'uid2',
|
|
11377
|
-
type: 'uint8_t',
|
|
11378
|
-
arrayLength: 18,
|
|
11379
|
-
extension: true,
|
|
11380
|
-
},
|
|
11381
|
-
]
|
|
11382
|
-
},
|
|
11383
11497
|
{
|
|
11384
11498
|
id: 149,
|
|
11385
11499
|
name: 'LANDING_TARGET',
|
|
@@ -11818,17 +11932,17 @@ const MESSAGE_DEFINITIONS = [
|
|
|
11818
11932
|
name: 'GPS_RTCM_DATA',
|
|
11819
11933
|
fields: [
|
|
11820
11934
|
{
|
|
11821
|
-
name: '
|
|
11935
|
+
name: 'flags',
|
|
11822
11936
|
type: 'uint8_t',
|
|
11823
|
-
arrayLength: 180,
|
|
11824
11937
|
},
|
|
11825
11938
|
{
|
|
11826
|
-
name: '
|
|
11939
|
+
name: 'len',
|
|
11827
11940
|
type: 'uint8_t',
|
|
11828
11941
|
},
|
|
11829
11942
|
{
|
|
11830
|
-
name: '
|
|
11943
|
+
name: 'data',
|
|
11831
11944
|
type: 'uint8_t',
|
|
11945
|
+
arrayLength: 180,
|
|
11832
11946
|
},
|
|
11833
11947
|
]
|
|
11834
11948
|
},
|
|
@@ -12086,11 +12200,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
12086
12200
|
id: 242,
|
|
12087
12201
|
name: 'HOME_POSITION',
|
|
12088
12202
|
fields: [
|
|
12089
|
-
{
|
|
12090
|
-
name: 'q',
|
|
12091
|
-
type: 'float',
|
|
12092
|
-
arrayLength: 4,
|
|
12093
|
-
},
|
|
12094
12203
|
{
|
|
12095
12204
|
name: 'latitude',
|
|
12096
12205
|
type: 'int32_t',
|
|
@@ -12115,6 +12224,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
12115
12224
|
name: 'z',
|
|
12116
12225
|
type: 'float',
|
|
12117
12226
|
},
|
|
12227
|
+
{
|
|
12228
|
+
name: 'q',
|
|
12229
|
+
type: 'float',
|
|
12230
|
+
arrayLength: 4,
|
|
12231
|
+
},
|
|
12118
12232
|
{
|
|
12119
12233
|
name: 'approach_x',
|
|
12120
12234
|
type: 'float',
|
|
@@ -12138,11 +12252,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
12138
12252
|
id: 243,
|
|
12139
12253
|
name: 'SET_HOME_POSITION',
|
|
12140
12254
|
fields: [
|
|
12141
|
-
{
|
|
12142
|
-
name: 'q',
|
|
12143
|
-
type: 'float',
|
|
12144
|
-
arrayLength: 4,
|
|
12145
|
-
},
|
|
12146
12255
|
{
|
|
12147
12256
|
name: 'latitude',
|
|
12148
12257
|
type: 'int32_t',
|
|
@@ -12167,6 +12276,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
12167
12276
|
name: 'z',
|
|
12168
12277
|
type: 'float',
|
|
12169
12278
|
},
|
|
12279
|
+
{
|
|
12280
|
+
name: 'q',
|
|
12281
|
+
type: 'float',
|
|
12282
|
+
arrayLength: 4,
|
|
12283
|
+
},
|
|
12170
12284
|
{
|
|
12171
12285
|
name: 'approach_x',
|
|
12172
12286
|
type: 'float',
|
|
@@ -12222,11 +12336,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
12222
12336
|
id: 246,
|
|
12223
12337
|
name: 'ADSB_VEHICLE',
|
|
12224
12338
|
fields: [
|
|
12225
|
-
{
|
|
12226
|
-
name: 'callsign',
|
|
12227
|
-
type: 'char',
|
|
12228
|
-
arrayLength: 9,
|
|
12229
|
-
},
|
|
12230
12339
|
{
|
|
12231
12340
|
name: 'icao_address',
|
|
12232
12341
|
type: 'uint32_t',
|
|
@@ -12267,6 +12376,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
12267
12376
|
name: 'altitude_type',
|
|
12268
12377
|
type: 'uint8_t',
|
|
12269
12378
|
},
|
|
12379
|
+
{
|
|
12380
|
+
name: 'callsign',
|
|
12381
|
+
type: 'char',
|
|
12382
|
+
arrayLength: 9,
|
|
12383
|
+
},
|
|
12270
12384
|
{
|
|
12271
12385
|
name: 'emitter_type',
|
|
12272
12386
|
type: 'uint8_t',
|
|
@@ -12315,11 +12429,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
12315
12429
|
id: 248,
|
|
12316
12430
|
name: 'V2_EXTENSION',
|
|
12317
12431
|
fields: [
|
|
12318
|
-
{
|
|
12319
|
-
name: 'payload',
|
|
12320
|
-
type: 'uint8_t',
|
|
12321
|
-
arrayLength: 249,
|
|
12322
|
-
},
|
|
12323
12432
|
{
|
|
12324
12433
|
name: 'message_type',
|
|
12325
12434
|
type: 'uint16_t',
|
|
@@ -12336,17 +12445,17 @@ const MESSAGE_DEFINITIONS = [
|
|
|
12336
12445
|
name: 'target_component',
|
|
12337
12446
|
type: 'uint8_t',
|
|
12338
12447
|
},
|
|
12448
|
+
{
|
|
12449
|
+
name: 'payload',
|
|
12450
|
+
type: 'uint8_t',
|
|
12451
|
+
arrayLength: 249,
|
|
12452
|
+
},
|
|
12339
12453
|
]
|
|
12340
12454
|
},
|
|
12341
12455
|
{
|
|
12342
12456
|
id: 249,
|
|
12343
12457
|
name: 'MEMORY_VECT',
|
|
12344
12458
|
fields: [
|
|
12345
|
-
{
|
|
12346
|
-
name: 'value',
|
|
12347
|
-
type: 'int8_t',
|
|
12348
|
-
arrayLength: 32,
|
|
12349
|
-
},
|
|
12350
12459
|
{
|
|
12351
12460
|
name: 'address',
|
|
12352
12461
|
type: 'uint16_t',
|
|
@@ -12359,17 +12468,17 @@ const MESSAGE_DEFINITIONS = [
|
|
|
12359
12468
|
name: 'type',
|
|
12360
12469
|
type: 'uint8_t',
|
|
12361
12470
|
},
|
|
12471
|
+
{
|
|
12472
|
+
name: 'value',
|
|
12473
|
+
type: 'int8_t',
|
|
12474
|
+
arrayLength: 32,
|
|
12475
|
+
},
|
|
12362
12476
|
]
|
|
12363
12477
|
},
|
|
12364
12478
|
{
|
|
12365
12479
|
id: 250,
|
|
12366
12480
|
name: 'DEBUG_VECT',
|
|
12367
12481
|
fields: [
|
|
12368
|
-
{
|
|
12369
|
-
name: 'name',
|
|
12370
|
-
type: 'char',
|
|
12371
|
-
arrayLength: 10,
|
|
12372
|
-
},
|
|
12373
12482
|
{
|
|
12374
12483
|
name: 'time_usec',
|
|
12375
12484
|
type: 'uint64_t',
|
|
@@ -12386,17 +12495,17 @@ const MESSAGE_DEFINITIONS = [
|
|
|
12386
12495
|
name: 'z',
|
|
12387
12496
|
type: 'float',
|
|
12388
12497
|
},
|
|
12498
|
+
{
|
|
12499
|
+
name: 'name',
|
|
12500
|
+
type: 'char',
|
|
12501
|
+
arrayLength: 10,
|
|
12502
|
+
},
|
|
12389
12503
|
]
|
|
12390
12504
|
},
|
|
12391
12505
|
{
|
|
12392
12506
|
id: 251,
|
|
12393
12507
|
name: 'NAMED_VALUE_FLOAT',
|
|
12394
12508
|
fields: [
|
|
12395
|
-
{
|
|
12396
|
-
name: 'name',
|
|
12397
|
-
type: 'char',
|
|
12398
|
-
arrayLength: 10,
|
|
12399
|
-
},
|
|
12400
12509
|
{
|
|
12401
12510
|
name: 'time_boot_ms',
|
|
12402
12511
|
type: 'uint32_t',
|
|
@@ -12405,17 +12514,17 @@ const MESSAGE_DEFINITIONS = [
|
|
|
12405
12514
|
name: 'value',
|
|
12406
12515
|
type: 'float',
|
|
12407
12516
|
},
|
|
12517
|
+
{
|
|
12518
|
+
name: 'name',
|
|
12519
|
+
type: 'char',
|
|
12520
|
+
arrayLength: 10,
|
|
12521
|
+
},
|
|
12408
12522
|
]
|
|
12409
12523
|
},
|
|
12410
12524
|
{
|
|
12411
12525
|
id: 252,
|
|
12412
12526
|
name: 'NAMED_VALUE_INT',
|
|
12413
12527
|
fields: [
|
|
12414
|
-
{
|
|
12415
|
-
name: 'name',
|
|
12416
|
-
type: 'char',
|
|
12417
|
-
arrayLength: 10,
|
|
12418
|
-
},
|
|
12419
12528
|
{
|
|
12420
12529
|
name: 'time_boot_ms',
|
|
12421
12530
|
type: 'uint32_t',
|
|
@@ -12424,21 +12533,26 @@ const MESSAGE_DEFINITIONS = [
|
|
|
12424
12533
|
name: 'value',
|
|
12425
12534
|
type: 'int32_t',
|
|
12426
12535
|
},
|
|
12536
|
+
{
|
|
12537
|
+
name: 'name',
|
|
12538
|
+
type: 'char',
|
|
12539
|
+
arrayLength: 10,
|
|
12540
|
+
},
|
|
12427
12541
|
]
|
|
12428
12542
|
},
|
|
12429
12543
|
{
|
|
12430
12544
|
id: 253,
|
|
12431
12545
|
name: 'STATUSTEXT',
|
|
12432
12546
|
fields: [
|
|
12547
|
+
{
|
|
12548
|
+
name: 'severity',
|
|
12549
|
+
type: 'uint8_t',
|
|
12550
|
+
},
|
|
12433
12551
|
{
|
|
12434
12552
|
name: 'text',
|
|
12435
12553
|
type: 'char',
|
|
12436
12554
|
arrayLength: 50,
|
|
12437
12555
|
},
|
|
12438
|
-
{
|
|
12439
|
-
name: 'severity',
|
|
12440
|
-
type: 'uint8_t',
|
|
12441
|
-
},
|
|
12442
12556
|
{
|
|
12443
12557
|
name: 'id',
|
|
12444
12558
|
type: 'uint16_t',
|
|
@@ -12473,11 +12587,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
12473
12587
|
id: 256,
|
|
12474
12588
|
name: 'SETUP_SIGNING',
|
|
12475
12589
|
fields: [
|
|
12476
|
-
{
|
|
12477
|
-
name: 'secret_key',
|
|
12478
|
-
type: 'uint8_t',
|
|
12479
|
-
arrayLength: 32,
|
|
12480
|
-
},
|
|
12481
12590
|
{
|
|
12482
12591
|
name: 'initial_timestamp',
|
|
12483
12592
|
type: 'uint64_t',
|
|
@@ -12490,6 +12599,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
12490
12599
|
name: 'target_component',
|
|
12491
12600
|
type: 'uint8_t',
|
|
12492
12601
|
},
|
|
12602
|
+
{
|
|
12603
|
+
name: 'secret_key',
|
|
12604
|
+
type: 'uint8_t',
|
|
12605
|
+
arrayLength: 32,
|
|
12606
|
+
},
|
|
12493
12607
|
]
|
|
12494
12608
|
},
|
|
12495
12609
|
{
|
|
@@ -12514,11 +12628,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
12514
12628
|
id: 258,
|
|
12515
12629
|
name: 'PLAY_TUNE',
|
|
12516
12630
|
fields: [
|
|
12517
|
-
{
|
|
12518
|
-
name: 'tune',
|
|
12519
|
-
type: 'char',
|
|
12520
|
-
arrayLength: 30,
|
|
12521
|
-
},
|
|
12522
12631
|
{
|
|
12523
12632
|
name: 'target_system',
|
|
12524
12633
|
type: 'uint8_t',
|
|
@@ -12527,6 +12636,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
12527
12636
|
name: 'target_component',
|
|
12528
12637
|
type: 'uint8_t',
|
|
12529
12638
|
},
|
|
12639
|
+
{
|
|
12640
|
+
name: 'tune',
|
|
12641
|
+
type: 'char',
|
|
12642
|
+
arrayLength: 30,
|
|
12643
|
+
},
|
|
12530
12644
|
{
|
|
12531
12645
|
name: 'tune2',
|
|
12532
12646
|
type: 'char',
|
|
@@ -12540,23 +12654,8 @@ const MESSAGE_DEFINITIONS = [
|
|
|
12540
12654
|
name: 'CAMERA_INFORMATION',
|
|
12541
12655
|
fields: [
|
|
12542
12656
|
{
|
|
12543
|
-
name: '
|
|
12544
|
-
type: '
|
|
12545
|
-
arrayLength: 140,
|
|
12546
|
-
},
|
|
12547
|
-
{
|
|
12548
|
-
name: 'vendor_name',
|
|
12549
|
-
type: 'uint8_t',
|
|
12550
|
-
arrayLength: 32,
|
|
12551
|
-
},
|
|
12552
|
-
{
|
|
12553
|
-
name: 'model_name',
|
|
12554
|
-
type: 'uint8_t',
|
|
12555
|
-
arrayLength: 32,
|
|
12556
|
-
},
|
|
12557
|
-
{
|
|
12558
|
-
name: 'time_boot_ms',
|
|
12559
|
-
type: 'uint32_t',
|
|
12657
|
+
name: 'time_boot_ms',
|
|
12658
|
+
type: 'uint32_t',
|
|
12560
12659
|
},
|
|
12561
12660
|
{
|
|
12562
12661
|
name: 'firmware_version',
|
|
@@ -12590,10 +12689,25 @@ const MESSAGE_DEFINITIONS = [
|
|
|
12590
12689
|
name: 'cam_definition_version',
|
|
12591
12690
|
type: 'uint16_t',
|
|
12592
12691
|
},
|
|
12692
|
+
{
|
|
12693
|
+
name: 'vendor_name',
|
|
12694
|
+
type: 'uint8_t',
|
|
12695
|
+
arrayLength: 32,
|
|
12696
|
+
},
|
|
12697
|
+
{
|
|
12698
|
+
name: 'model_name',
|
|
12699
|
+
type: 'uint8_t',
|
|
12700
|
+
arrayLength: 32,
|
|
12701
|
+
},
|
|
12593
12702
|
{
|
|
12594
12703
|
name: 'lens_id',
|
|
12595
12704
|
type: 'uint8_t',
|
|
12596
12705
|
},
|
|
12706
|
+
{
|
|
12707
|
+
name: 'cam_definition_uri',
|
|
12708
|
+
type: 'char',
|
|
12709
|
+
arrayLength: 140,
|
|
12710
|
+
},
|
|
12597
12711
|
{
|
|
12598
12712
|
name: 'gimbal_device_id',
|
|
12599
12713
|
type: 'uint8_t',
|
|
@@ -12737,16 +12851,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
12737
12851
|
id: 263,
|
|
12738
12852
|
name: 'CAMERA_IMAGE_CAPTURED',
|
|
12739
12853
|
fields: [
|
|
12740
|
-
{
|
|
12741
|
-
name: 'file_url',
|
|
12742
|
-
type: 'char',
|
|
12743
|
-
arrayLength: 205,
|
|
12744
|
-
},
|
|
12745
|
-
{
|
|
12746
|
-
name: 'q',
|
|
12747
|
-
type: 'float',
|
|
12748
|
-
arrayLength: 4,
|
|
12749
|
-
},
|
|
12750
12854
|
{
|
|
12751
12855
|
name: 'time_utc',
|
|
12752
12856
|
type: 'uint64_t',
|
|
@@ -12771,6 +12875,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
12771
12875
|
name: 'relative_alt',
|
|
12772
12876
|
type: 'int32_t',
|
|
12773
12877
|
},
|
|
12878
|
+
{
|
|
12879
|
+
name: 'q',
|
|
12880
|
+
type: 'float',
|
|
12881
|
+
arrayLength: 4,
|
|
12882
|
+
},
|
|
12774
12883
|
{
|
|
12775
12884
|
name: 'image_index',
|
|
12776
12885
|
type: 'int32_t',
|
|
@@ -12783,6 +12892,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
12783
12892
|
name: 'capture_result',
|
|
12784
12893
|
type: 'int8_t',
|
|
12785
12894
|
},
|
|
12895
|
+
{
|
|
12896
|
+
name: 'file_url',
|
|
12897
|
+
type: 'char',
|
|
12898
|
+
arrayLength: 205,
|
|
12899
|
+
},
|
|
12786
12900
|
]
|
|
12787
12901
|
},
|
|
12788
12902
|
{
|
|
@@ -12843,11 +12957,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
12843
12957
|
id: 266,
|
|
12844
12958
|
name: 'LOGGING_DATA',
|
|
12845
12959
|
fields: [
|
|
12846
|
-
{
|
|
12847
|
-
name: 'data',
|
|
12848
|
-
type: 'uint8_t',
|
|
12849
|
-
arrayLength: 249,
|
|
12850
|
-
},
|
|
12851
12960
|
{
|
|
12852
12961
|
name: 'sequence',
|
|
12853
12962
|
type: 'uint16_t',
|
|
@@ -12868,17 +12977,17 @@ const MESSAGE_DEFINITIONS = [
|
|
|
12868
12977
|
name: 'first_message_offset',
|
|
12869
12978
|
type: 'uint8_t',
|
|
12870
12979
|
},
|
|
12980
|
+
{
|
|
12981
|
+
name: 'data',
|
|
12982
|
+
type: 'uint8_t',
|
|
12983
|
+
arrayLength: 249,
|
|
12984
|
+
},
|
|
12871
12985
|
]
|
|
12872
12986
|
},
|
|
12873
12987
|
{
|
|
12874
12988
|
id: 267,
|
|
12875
12989
|
name: 'LOGGING_DATA_ACKED',
|
|
12876
12990
|
fields: [
|
|
12877
|
-
{
|
|
12878
|
-
name: 'data',
|
|
12879
|
-
type: 'uint8_t',
|
|
12880
|
-
arrayLength: 249,
|
|
12881
|
-
},
|
|
12882
12991
|
{
|
|
12883
12992
|
name: 'sequence',
|
|
12884
12993
|
type: 'uint16_t',
|
|
@@ -12899,6 +13008,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
12899
13008
|
name: 'first_message_offset',
|
|
12900
13009
|
type: 'uint8_t',
|
|
12901
13010
|
},
|
|
13011
|
+
{
|
|
13012
|
+
name: 'data',
|
|
13013
|
+
type: 'uint8_t',
|
|
13014
|
+
arrayLength: 249,
|
|
13015
|
+
},
|
|
12902
13016
|
]
|
|
12903
13017
|
},
|
|
12904
13018
|
{
|
|
@@ -12923,16 +13037,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
12923
13037
|
id: 269,
|
|
12924
13038
|
name: 'VIDEO_STREAM_INFORMATION',
|
|
12925
13039
|
fields: [
|
|
12926
|
-
{
|
|
12927
|
-
name: 'uri',
|
|
12928
|
-
type: 'char',
|
|
12929
|
-
arrayLength: 160,
|
|
12930
|
-
},
|
|
12931
|
-
{
|
|
12932
|
-
name: 'name',
|
|
12933
|
-
type: 'char',
|
|
12934
|
-
arrayLength: 32,
|
|
12935
|
-
},
|
|
12936
13040
|
{
|
|
12937
13041
|
name: 'framerate',
|
|
12938
13042
|
type: 'float',
|
|
@@ -12973,6 +13077,16 @@ const MESSAGE_DEFINITIONS = [
|
|
|
12973
13077
|
name: 'type',
|
|
12974
13078
|
type: 'uint8_t',
|
|
12975
13079
|
},
|
|
13080
|
+
{
|
|
13081
|
+
name: 'name',
|
|
13082
|
+
type: 'char',
|
|
13083
|
+
arrayLength: 32,
|
|
13084
|
+
},
|
|
13085
|
+
{
|
|
13086
|
+
name: 'uri',
|
|
13087
|
+
type: 'char',
|
|
13088
|
+
arrayLength: 160,
|
|
13089
|
+
},
|
|
12976
13090
|
{
|
|
12977
13091
|
name: 'encoding',
|
|
12978
13092
|
type: 'uint8_t',
|
|
@@ -13032,11 +13146,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
13032
13146
|
id: 271,
|
|
13033
13147
|
name: 'CAMERA_FOV_STATUS',
|
|
13034
13148
|
fields: [
|
|
13035
|
-
{
|
|
13036
|
-
name: 'q',
|
|
13037
|
-
type: 'float',
|
|
13038
|
-
arrayLength: 4,
|
|
13039
|
-
},
|
|
13040
13149
|
{
|
|
13041
13150
|
name: 'time_boot_ms',
|
|
13042
13151
|
type: 'uint32_t',
|
|
@@ -13065,6 +13174,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
13065
13174
|
name: 'alt_image',
|
|
13066
13175
|
type: 'int32_t',
|
|
13067
13176
|
},
|
|
13177
|
+
{
|
|
13178
|
+
name: 'q',
|
|
13179
|
+
type: 'float',
|
|
13180
|
+
arrayLength: 4,
|
|
13181
|
+
},
|
|
13068
13182
|
{
|
|
13069
13183
|
name: 'hfov',
|
|
13070
13184
|
type: 'float',
|
|
@@ -13316,15 +13430,15 @@ const MESSAGE_DEFINITIONS = [
|
|
|
13316
13430
|
id: 282,
|
|
13317
13431
|
name: 'GIMBAL_MANAGER_SET_ATTITUDE',
|
|
13318
13432
|
fields: [
|
|
13433
|
+
{
|
|
13434
|
+
name: 'flags',
|
|
13435
|
+
type: 'uint32_t',
|
|
13436
|
+
},
|
|
13319
13437
|
{
|
|
13320
13438
|
name: 'q',
|
|
13321
13439
|
type: 'float',
|
|
13322
13440
|
arrayLength: 4,
|
|
13323
13441
|
},
|
|
13324
|
-
{
|
|
13325
|
-
name: 'flags',
|
|
13326
|
-
type: 'uint32_t',
|
|
13327
|
-
},
|
|
13328
13442
|
{
|
|
13329
13443
|
name: 'angular_velocity_x',
|
|
13330
13444
|
type: 'float',
|
|
@@ -13355,21 +13469,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
13355
13469
|
id: 283,
|
|
13356
13470
|
name: 'GIMBAL_DEVICE_INFORMATION',
|
|
13357
13471
|
fields: [
|
|
13358
|
-
{
|
|
13359
|
-
name: 'vendor_name',
|
|
13360
|
-
type: 'char',
|
|
13361
|
-
arrayLength: 32,
|
|
13362
|
-
},
|
|
13363
|
-
{
|
|
13364
|
-
name: 'model_name',
|
|
13365
|
-
type: 'char',
|
|
13366
|
-
arrayLength: 32,
|
|
13367
|
-
},
|
|
13368
|
-
{
|
|
13369
|
-
name: 'custom_name',
|
|
13370
|
-
type: 'char',
|
|
13371
|
-
arrayLength: 32,
|
|
13372
|
-
},
|
|
13373
13472
|
{
|
|
13374
13473
|
name: 'uid',
|
|
13375
13474
|
type: 'uint64_t',
|
|
@@ -13418,6 +13517,21 @@ const MESSAGE_DEFINITIONS = [
|
|
|
13418
13517
|
name: 'custom_cap_flags',
|
|
13419
13518
|
type: 'uint16_t',
|
|
13420
13519
|
},
|
|
13520
|
+
{
|
|
13521
|
+
name: 'vendor_name',
|
|
13522
|
+
type: 'char',
|
|
13523
|
+
arrayLength: 32,
|
|
13524
|
+
},
|
|
13525
|
+
{
|
|
13526
|
+
name: 'model_name',
|
|
13527
|
+
type: 'char',
|
|
13528
|
+
arrayLength: 32,
|
|
13529
|
+
},
|
|
13530
|
+
{
|
|
13531
|
+
name: 'custom_name',
|
|
13532
|
+
type: 'char',
|
|
13533
|
+
arrayLength: 32,
|
|
13534
|
+
},
|
|
13421
13535
|
{
|
|
13422
13536
|
name: 'gimbal_device_id',
|
|
13423
13537
|
type: 'uint8_t',
|
|
@@ -13464,15 +13578,15 @@ const MESSAGE_DEFINITIONS = [
|
|
|
13464
13578
|
id: 285,
|
|
13465
13579
|
name: 'GIMBAL_DEVICE_ATTITUDE_STATUS',
|
|
13466
13580
|
fields: [
|
|
13581
|
+
{
|
|
13582
|
+
name: 'time_boot_ms',
|
|
13583
|
+
type: 'uint32_t',
|
|
13584
|
+
},
|
|
13467
13585
|
{
|
|
13468
13586
|
name: 'q',
|
|
13469
13587
|
type: 'float',
|
|
13470
13588
|
arrayLength: 4,
|
|
13471
13589
|
},
|
|
13472
|
-
{
|
|
13473
|
-
name: 'time_boot_ms',
|
|
13474
|
-
type: 'uint32_t',
|
|
13475
|
-
},
|
|
13476
13590
|
{
|
|
13477
13591
|
name: 'angular_velocity_x',
|
|
13478
13592
|
type: 'float',
|
|
@@ -13522,15 +13636,15 @@ const MESSAGE_DEFINITIONS = [
|
|
|
13522
13636
|
id: 286,
|
|
13523
13637
|
name: 'AUTOPILOT_STATE_FOR_GIMBAL_DEVICE',
|
|
13524
13638
|
fields: [
|
|
13639
|
+
{
|
|
13640
|
+
name: 'time_boot_us',
|
|
13641
|
+
type: 'uint64_t',
|
|
13642
|
+
},
|
|
13525
13643
|
{
|
|
13526
13644
|
name: 'q',
|
|
13527
13645
|
type: 'float',
|
|
13528
13646
|
arrayLength: 4,
|
|
13529
13647
|
},
|
|
13530
|
-
{
|
|
13531
|
-
name: 'time_boot_us',
|
|
13532
|
-
type: 'uint64_t',
|
|
13533
|
-
},
|
|
13534
13648
|
{
|
|
13535
13649
|
name: 'q_estimated_delay_us',
|
|
13536
13650
|
type: 'uint32_t',
|
|
@@ -13658,14 +13772,18 @@ const MESSAGE_DEFINITIONS = [
|
|
|
13658
13772
|
id: 290,
|
|
13659
13773
|
name: 'ESC_INFO',
|
|
13660
13774
|
fields: [
|
|
13775
|
+
{
|
|
13776
|
+
name: 'time_usec',
|
|
13777
|
+
type: 'uint64_t',
|
|
13778
|
+
},
|
|
13661
13779
|
{
|
|
13662
13780
|
name: 'error_count',
|
|
13663
13781
|
type: 'uint32_t',
|
|
13664
13782
|
arrayLength: 4,
|
|
13665
13783
|
},
|
|
13666
13784
|
{
|
|
13667
|
-
name: '
|
|
13668
|
-
type: '
|
|
13785
|
+
name: 'counter',
|
|
13786
|
+
type: 'uint16_t',
|
|
13669
13787
|
},
|
|
13670
13788
|
{
|
|
13671
13789
|
name: 'failure_flags',
|
|
@@ -13677,10 +13795,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
13677
13795
|
type: 'int16_t',
|
|
13678
13796
|
arrayLength: 4,
|
|
13679
13797
|
},
|
|
13680
|
-
{
|
|
13681
|
-
name: 'counter',
|
|
13682
|
-
type: 'uint16_t',
|
|
13683
|
-
},
|
|
13684
13798
|
{
|
|
13685
13799
|
name: 'index',
|
|
13686
13800
|
type: 'uint8_t',
|
|
@@ -13703,6 +13817,10 @@ const MESSAGE_DEFINITIONS = [
|
|
|
13703
13817
|
id: 291,
|
|
13704
13818
|
name: 'ESC_STATUS',
|
|
13705
13819
|
fields: [
|
|
13820
|
+
{
|
|
13821
|
+
name: 'time_usec',
|
|
13822
|
+
type: 'uint64_t',
|
|
13823
|
+
},
|
|
13706
13824
|
{
|
|
13707
13825
|
name: 'rpm',
|
|
13708
13826
|
type: 'int32_t',
|
|
@@ -13719,11 +13837,33 @@ const MESSAGE_DEFINITIONS = [
|
|
|
13719
13837
|
arrayLength: 4,
|
|
13720
13838
|
},
|
|
13721
13839
|
{
|
|
13722
|
-
name: '
|
|
13723
|
-
type: '
|
|
13840
|
+
name: 'index',
|
|
13841
|
+
type: 'uint8_t',
|
|
13724
13842
|
},
|
|
13843
|
+
]
|
|
13844
|
+
},
|
|
13845
|
+
{
|
|
13846
|
+
id: 295,
|
|
13847
|
+
name: 'AIRSPEED',
|
|
13848
|
+
fields: [
|
|
13725
13849
|
{
|
|
13726
|
-
name: '
|
|
13850
|
+
name: 'airspeed',
|
|
13851
|
+
type: 'float',
|
|
13852
|
+
},
|
|
13853
|
+
{
|
|
13854
|
+
name: 'raw_press',
|
|
13855
|
+
type: 'float',
|
|
13856
|
+
},
|
|
13857
|
+
{
|
|
13858
|
+
name: 'temperature',
|
|
13859
|
+
type: 'int16_t',
|
|
13860
|
+
},
|
|
13861
|
+
{
|
|
13862
|
+
name: 'id',
|
|
13863
|
+
type: 'uint8_t',
|
|
13864
|
+
},
|
|
13865
|
+
{
|
|
13866
|
+
name: 'flags',
|
|
13727
13867
|
type: 'uint8_t',
|
|
13728
13868
|
},
|
|
13729
13869
|
]
|
|
@@ -13733,14 +13873,14 @@ const MESSAGE_DEFINITIONS = [
|
|
|
13733
13873
|
name: 'WIFI_CONFIG_AP',
|
|
13734
13874
|
fields: [
|
|
13735
13875
|
{
|
|
13736
|
-
name: '
|
|
13876
|
+
name: 'ssid',
|
|
13737
13877
|
type: 'char',
|
|
13738
|
-
arrayLength:
|
|
13878
|
+
arrayLength: 32,
|
|
13739
13879
|
},
|
|
13740
13880
|
{
|
|
13741
|
-
name: '
|
|
13881
|
+
name: 'password',
|
|
13742
13882
|
type: 'char',
|
|
13743
|
-
arrayLength:
|
|
13883
|
+
arrayLength: 64,
|
|
13744
13884
|
},
|
|
13745
13885
|
{
|
|
13746
13886
|
name: 'mode',
|
|
@@ -13755,19 +13895,37 @@ const MESSAGE_DEFINITIONS = [
|
|
|
13755
13895
|
]
|
|
13756
13896
|
},
|
|
13757
13897
|
{
|
|
13758
|
-
id:
|
|
13759
|
-
name: '
|
|
13898
|
+
id: 300,
|
|
13899
|
+
name: 'PROTOCOL_VERSION',
|
|
13760
13900
|
fields: [
|
|
13761
13901
|
{
|
|
13762
|
-
name: '
|
|
13763
|
-
type: '
|
|
13764
|
-
arrayLength: 20,
|
|
13902
|
+
name: 'version',
|
|
13903
|
+
type: 'uint16_t',
|
|
13765
13904
|
},
|
|
13766
13905
|
{
|
|
13767
|
-
name: '
|
|
13768
|
-
type: '
|
|
13769
|
-
|
|
13906
|
+
name: 'min_version',
|
|
13907
|
+
type: 'uint16_t',
|
|
13908
|
+
},
|
|
13909
|
+
{
|
|
13910
|
+
name: 'max_version',
|
|
13911
|
+
type: 'uint16_t',
|
|
13912
|
+
},
|
|
13913
|
+
{
|
|
13914
|
+
name: 'spec_version_hash',
|
|
13915
|
+
type: 'uint8_t',
|
|
13916
|
+
arrayLength: 8,
|
|
13770
13917
|
},
|
|
13918
|
+
{
|
|
13919
|
+
name: 'library_version_hash',
|
|
13920
|
+
type: 'uint8_t',
|
|
13921
|
+
arrayLength: 8,
|
|
13922
|
+
},
|
|
13923
|
+
]
|
|
13924
|
+
},
|
|
13925
|
+
{
|
|
13926
|
+
id: 301,
|
|
13927
|
+
name: 'AIS_VESSEL',
|
|
13928
|
+
fields: [
|
|
13771
13929
|
{
|
|
13772
13930
|
name: 'mmsi',
|
|
13773
13931
|
type: 'uint32_t',
|
|
@@ -13828,6 +13986,16 @@ const MESSAGE_DEFINITIONS = [
|
|
|
13828
13986
|
name: 'dimension_starboard',
|
|
13829
13987
|
type: 'uint8_t',
|
|
13830
13988
|
},
|
|
13989
|
+
{
|
|
13990
|
+
name: 'callsign',
|
|
13991
|
+
type: 'char',
|
|
13992
|
+
arrayLength: 7,
|
|
13993
|
+
},
|
|
13994
|
+
{
|
|
13995
|
+
name: 'name',
|
|
13996
|
+
type: 'char',
|
|
13997
|
+
arrayLength: 20,
|
|
13998
|
+
},
|
|
13831
13999
|
]
|
|
13832
14000
|
},
|
|
13833
14001
|
{
|
|
@@ -13864,16 +14032,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
13864
14032
|
id: 311,
|
|
13865
14033
|
name: 'UAVCAN_NODE_INFO',
|
|
13866
14034
|
fields: [
|
|
13867
|
-
{
|
|
13868
|
-
name: 'name',
|
|
13869
|
-
type: 'char',
|
|
13870
|
-
arrayLength: 80,
|
|
13871
|
-
},
|
|
13872
|
-
{
|
|
13873
|
-
name: 'hw_unique_id',
|
|
13874
|
-
type: 'uint8_t',
|
|
13875
|
-
arrayLength: 16,
|
|
13876
|
-
},
|
|
13877
14035
|
{
|
|
13878
14036
|
name: 'time_usec',
|
|
13879
14037
|
type: 'uint64_t',
|
|
@@ -13887,13 +14045,23 @@ const MESSAGE_DEFINITIONS = [
|
|
|
13887
14045
|
type: 'uint32_t',
|
|
13888
14046
|
},
|
|
13889
14047
|
{
|
|
13890
|
-
name: '
|
|
14048
|
+
name: 'name',
|
|
14049
|
+
type: 'char',
|
|
14050
|
+
arrayLength: 80,
|
|
14051
|
+
},
|
|
14052
|
+
{
|
|
14053
|
+
name: 'hw_version_major',
|
|
13891
14054
|
type: 'uint8_t',
|
|
13892
14055
|
},
|
|
13893
14056
|
{
|
|
13894
14057
|
name: 'hw_version_minor',
|
|
13895
14058
|
type: 'uint8_t',
|
|
13896
14059
|
},
|
|
14060
|
+
{
|
|
14061
|
+
name: 'hw_unique_id',
|
|
14062
|
+
type: 'uint8_t',
|
|
14063
|
+
arrayLength: 16,
|
|
14064
|
+
},
|
|
13897
14065
|
{
|
|
13898
14066
|
name: 'sw_version_major',
|
|
13899
14067
|
type: 'uint8_t',
|
|
@@ -13908,11 +14076,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
13908
14076
|
id: 320,
|
|
13909
14077
|
name: 'PARAM_EXT_REQUEST_READ',
|
|
13910
14078
|
fields: [
|
|
13911
|
-
{
|
|
13912
|
-
name: 'param_id',
|
|
13913
|
-
type: 'char',
|
|
13914
|
-
arrayLength: 16,
|
|
13915
|
-
},
|
|
13916
14079
|
{
|
|
13917
14080
|
name: 'param_index',
|
|
13918
14081
|
type: 'int16_t',
|
|
@@ -13925,6 +14088,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
13925
14088
|
name: 'target_component',
|
|
13926
14089
|
type: 'uint8_t',
|
|
13927
14090
|
},
|
|
14091
|
+
{
|
|
14092
|
+
name: 'param_id',
|
|
14093
|
+
type: 'char',
|
|
14094
|
+
arrayLength: 16,
|
|
14095
|
+
},
|
|
13928
14096
|
]
|
|
13929
14097
|
},
|
|
13930
14098
|
{
|
|
@@ -13946,9 +14114,12 @@ const MESSAGE_DEFINITIONS = [
|
|
|
13946
14114
|
name: 'PARAM_EXT_VALUE',
|
|
13947
14115
|
fields: [
|
|
13948
14116
|
{
|
|
13949
|
-
name: '
|
|
13950
|
-
type: '
|
|
13951
|
-
|
|
14117
|
+
name: 'param_count',
|
|
14118
|
+
type: 'uint16_t',
|
|
14119
|
+
},
|
|
14120
|
+
{
|
|
14121
|
+
name: 'param_index',
|
|
14122
|
+
type: 'uint16_t',
|
|
13952
14123
|
},
|
|
13953
14124
|
{
|
|
13954
14125
|
name: 'param_id',
|
|
@@ -13956,12 +14127,9 @@ const MESSAGE_DEFINITIONS = [
|
|
|
13956
14127
|
arrayLength: 16,
|
|
13957
14128
|
},
|
|
13958
14129
|
{
|
|
13959
|
-
name: '
|
|
13960
|
-
type: '
|
|
13961
|
-
|
|
13962
|
-
{
|
|
13963
|
-
name: 'param_index',
|
|
13964
|
-
type: 'uint16_t',
|
|
14130
|
+
name: 'param_value',
|
|
14131
|
+
type: 'char',
|
|
14132
|
+
arrayLength: 128,
|
|
13965
14133
|
},
|
|
13966
14134
|
{
|
|
13967
14135
|
name: 'param_type',
|
|
@@ -13974,9 +14142,12 @@ const MESSAGE_DEFINITIONS = [
|
|
|
13974
14142
|
name: 'PARAM_EXT_SET',
|
|
13975
14143
|
fields: [
|
|
13976
14144
|
{
|
|
13977
|
-
name: '
|
|
13978
|
-
type: '
|
|
13979
|
-
|
|
14145
|
+
name: 'target_system',
|
|
14146
|
+
type: 'uint8_t',
|
|
14147
|
+
},
|
|
14148
|
+
{
|
|
14149
|
+
name: 'target_component',
|
|
14150
|
+
type: 'uint8_t',
|
|
13980
14151
|
},
|
|
13981
14152
|
{
|
|
13982
14153
|
name: 'param_id',
|
|
@@ -13984,12 +14155,9 @@ const MESSAGE_DEFINITIONS = [
|
|
|
13984
14155
|
arrayLength: 16,
|
|
13985
14156
|
},
|
|
13986
14157
|
{
|
|
13987
|
-
name: '
|
|
13988
|
-
type: '
|
|
13989
|
-
|
|
13990
|
-
{
|
|
13991
|
-
name: 'target_component',
|
|
13992
|
-
type: 'uint8_t',
|
|
14158
|
+
name: 'param_value',
|
|
14159
|
+
type: 'char',
|
|
14160
|
+
arrayLength: 128,
|
|
13993
14161
|
},
|
|
13994
14162
|
{
|
|
13995
14163
|
name: 'param_type',
|
|
@@ -14002,14 +14170,14 @@ const MESSAGE_DEFINITIONS = [
|
|
|
14002
14170
|
name: 'PARAM_EXT_ACK',
|
|
14003
14171
|
fields: [
|
|
14004
14172
|
{
|
|
14005
|
-
name: '
|
|
14173
|
+
name: 'param_id',
|
|
14006
14174
|
type: 'char',
|
|
14007
|
-
arrayLength:
|
|
14175
|
+
arrayLength: 16,
|
|
14008
14176
|
},
|
|
14009
14177
|
{
|
|
14010
|
-
name: '
|
|
14178
|
+
name: 'param_value',
|
|
14011
14179
|
type: 'char',
|
|
14012
|
-
arrayLength:
|
|
14180
|
+
arrayLength: 128,
|
|
14013
14181
|
},
|
|
14014
14182
|
{
|
|
14015
14183
|
name: 'param_type',
|
|
@@ -14025,15 +14193,15 @@ const MESSAGE_DEFINITIONS = [
|
|
|
14025
14193
|
id: 330,
|
|
14026
14194
|
name: 'OBSTACLE_DISTANCE',
|
|
14027
14195
|
fields: [
|
|
14196
|
+
{
|
|
14197
|
+
name: 'time_usec',
|
|
14198
|
+
type: 'uint64_t',
|
|
14199
|
+
},
|
|
14028
14200
|
{
|
|
14029
14201
|
name: 'distances',
|
|
14030
14202
|
type: 'uint16_t',
|
|
14031
14203
|
arrayLength: 72,
|
|
14032
14204
|
},
|
|
14033
|
-
{
|
|
14034
|
-
name: 'time_usec',
|
|
14035
|
-
type: 'uint64_t',
|
|
14036
|
-
},
|
|
14037
14205
|
{
|
|
14038
14206
|
name: 'min_distance',
|
|
14039
14207
|
type: 'uint16_t',
|
|
@@ -14071,21 +14239,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
14071
14239
|
id: 331,
|
|
14072
14240
|
name: 'ODOMETRY',
|
|
14073
14241
|
fields: [
|
|
14074
|
-
{
|
|
14075
|
-
name: 'pose_covariance',
|
|
14076
|
-
type: 'float',
|
|
14077
|
-
arrayLength: 21,
|
|
14078
|
-
},
|
|
14079
|
-
{
|
|
14080
|
-
name: 'velocity_covariance',
|
|
14081
|
-
type: 'float',
|
|
14082
|
-
arrayLength: 21,
|
|
14083
|
-
},
|
|
14084
|
-
{
|
|
14085
|
-
name: 'q',
|
|
14086
|
-
type: 'float',
|
|
14087
|
-
arrayLength: 4,
|
|
14088
|
-
},
|
|
14089
14242
|
{
|
|
14090
14243
|
name: 'time_usec',
|
|
14091
14244
|
type: 'uint64_t',
|
|
@@ -14102,6 +14255,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
14102
14255
|
name: 'z',
|
|
14103
14256
|
type: 'float',
|
|
14104
14257
|
},
|
|
14258
|
+
{
|
|
14259
|
+
name: 'q',
|
|
14260
|
+
type: 'float',
|
|
14261
|
+
arrayLength: 4,
|
|
14262
|
+
},
|
|
14105
14263
|
{
|
|
14106
14264
|
name: 'vx',
|
|
14107
14265
|
type: 'float',
|
|
@@ -14126,6 +14284,16 @@ const MESSAGE_DEFINITIONS = [
|
|
|
14126
14284
|
name: 'yawspeed',
|
|
14127
14285
|
type: 'float',
|
|
14128
14286
|
},
|
|
14287
|
+
{
|
|
14288
|
+
name: 'pose_covariance',
|
|
14289
|
+
type: 'float',
|
|
14290
|
+
arrayLength: 21,
|
|
14291
|
+
},
|
|
14292
|
+
{
|
|
14293
|
+
name: 'velocity_covariance',
|
|
14294
|
+
type: 'float',
|
|
14295
|
+
arrayLength: 21,
|
|
14296
|
+
},
|
|
14129
14297
|
{
|
|
14130
14298
|
name: 'frame_id',
|
|
14131
14299
|
type: 'uint8_t',
|
|
@@ -14155,6 +14323,10 @@ const MESSAGE_DEFINITIONS = [
|
|
|
14155
14323
|
id: 332,
|
|
14156
14324
|
name: 'TRAJECTORY_REPRESENTATION_WAYPOINTS',
|
|
14157
14325
|
fields: [
|
|
14326
|
+
{
|
|
14327
|
+
name: 'time_usec',
|
|
14328
|
+
type: 'uint64_t',
|
|
14329
|
+
},
|
|
14158
14330
|
{
|
|
14159
14331
|
name: 'pos_x',
|
|
14160
14332
|
type: 'float',
|
|
@@ -14215,10 +14387,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
14215
14387
|
type: 'uint16_t',
|
|
14216
14388
|
arrayLength: 5,
|
|
14217
14389
|
},
|
|
14218
|
-
{
|
|
14219
|
-
name: 'time_usec',
|
|
14220
|
-
type: 'uint64_t',
|
|
14221
|
-
},
|
|
14222
14390
|
{
|
|
14223
14391
|
name: 'valid_points',
|
|
14224
14392
|
type: 'uint8_t',
|
|
@@ -14229,6 +14397,10 @@ const MESSAGE_DEFINITIONS = [
|
|
|
14229
14397
|
id: 333,
|
|
14230
14398
|
name: 'TRAJECTORY_REPRESENTATION_BEZIER',
|
|
14231
14399
|
fields: [
|
|
14400
|
+
{
|
|
14401
|
+
name: 'time_usec',
|
|
14402
|
+
type: 'uint64_t',
|
|
14403
|
+
},
|
|
14232
14404
|
{
|
|
14233
14405
|
name: 'pos_x',
|
|
14234
14406
|
type: 'float',
|
|
@@ -14254,10 +14426,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
14254
14426
|
type: 'float',
|
|
14255
14427
|
arrayLength: 5,
|
|
14256
14428
|
},
|
|
14257
|
-
{
|
|
14258
|
-
name: 'time_usec',
|
|
14259
|
-
type: 'uint64_t',
|
|
14260
|
-
},
|
|
14261
14429
|
{
|
|
14262
14430
|
name: 'valid_points',
|
|
14263
14431
|
type: 'uint8_t',
|
|
@@ -14341,9 +14509,12 @@ const MESSAGE_DEFINITIONS = [
|
|
|
14341
14509
|
name: 'CELLULAR_CONFIG',
|
|
14342
14510
|
fields: [
|
|
14343
14511
|
{
|
|
14344
|
-
name: '
|
|
14345
|
-
type: '
|
|
14346
|
-
|
|
14512
|
+
name: 'enable_lte',
|
|
14513
|
+
type: 'uint8_t',
|
|
14514
|
+
},
|
|
14515
|
+
{
|
|
14516
|
+
name: 'enable_pin',
|
|
14517
|
+
type: 'uint8_t',
|
|
14347
14518
|
},
|
|
14348
14519
|
{
|
|
14349
14520
|
name: 'pin',
|
|
@@ -14356,17 +14527,14 @@ const MESSAGE_DEFINITIONS = [
|
|
|
14356
14527
|
arrayLength: 16,
|
|
14357
14528
|
},
|
|
14358
14529
|
{
|
|
14359
|
-
name: '
|
|
14530
|
+
name: 'apn',
|
|
14360
14531
|
type: 'char',
|
|
14361
|
-
arrayLength:
|
|
14362
|
-
},
|
|
14363
|
-
{
|
|
14364
|
-
name: 'enable_lte',
|
|
14365
|
-
type: 'uint8_t',
|
|
14532
|
+
arrayLength: 32,
|
|
14366
14533
|
},
|
|
14367
14534
|
{
|
|
14368
|
-
name: '
|
|
14369
|
-
type: '
|
|
14535
|
+
name: 'puk',
|
|
14536
|
+
type: 'char',
|
|
14537
|
+
arrayLength: 16,
|
|
14370
14538
|
},
|
|
14371
14539
|
{
|
|
14372
14540
|
name: 'roaming',
|
|
@@ -14396,11 +14564,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
14396
14564
|
id: 340,
|
|
14397
14565
|
name: 'UTM_GLOBAL_POSITION',
|
|
14398
14566
|
fields: [
|
|
14399
|
-
{
|
|
14400
|
-
name: 'uas_id',
|
|
14401
|
-
type: 'uint8_t',
|
|
14402
|
-
arrayLength: 18,
|
|
14403
|
-
},
|
|
14404
14567
|
{
|
|
14405
14568
|
name: 'time',
|
|
14406
14569
|
type: 'uint64_t',
|
|
@@ -14461,6 +14624,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
14461
14624
|
name: 'update_rate',
|
|
14462
14625
|
type: 'uint16_t',
|
|
14463
14626
|
},
|
|
14627
|
+
{
|
|
14628
|
+
name: 'uas_id',
|
|
14629
|
+
type: 'uint8_t',
|
|
14630
|
+
arrayLength: 18,
|
|
14631
|
+
},
|
|
14464
14632
|
{
|
|
14465
14633
|
name: 'flight_state',
|
|
14466
14634
|
type: 'uint8_t',
|
|
@@ -14472,14 +14640,36 @@ const MESSAGE_DEFINITIONS = [
|
|
|
14472
14640
|
]
|
|
14473
14641
|
},
|
|
14474
14642
|
{
|
|
14475
|
-
id:
|
|
14476
|
-
name: '
|
|
14643
|
+
id: 345,
|
|
14644
|
+
name: 'PARAM_ERROR',
|
|
14477
14645
|
fields: [
|
|
14478
14646
|
{
|
|
14479
|
-
name: '
|
|
14647
|
+
name: 'param_index',
|
|
14648
|
+
type: 'int16_t',
|
|
14649
|
+
},
|
|
14650
|
+
{
|
|
14651
|
+
name: 'target_system',
|
|
14652
|
+
type: 'uint8_t',
|
|
14653
|
+
},
|
|
14654
|
+
{
|
|
14655
|
+
name: 'target_component',
|
|
14656
|
+
type: 'uint8_t',
|
|
14657
|
+
},
|
|
14658
|
+
{
|
|
14659
|
+
name: 'param_id',
|
|
14480
14660
|
type: 'char',
|
|
14481
|
-
arrayLength:
|
|
14661
|
+
arrayLength: 16,
|
|
14662
|
+
},
|
|
14663
|
+
{
|
|
14664
|
+
name: 'error',
|
|
14665
|
+
type: 'uint8_t',
|
|
14482
14666
|
},
|
|
14667
|
+
]
|
|
14668
|
+
},
|
|
14669
|
+
{
|
|
14670
|
+
id: 350,
|
|
14671
|
+
name: 'DEBUG_FLOAT_ARRAY',
|
|
14672
|
+
fields: [
|
|
14483
14673
|
{
|
|
14484
14674
|
name: 'time_usec',
|
|
14485
14675
|
type: 'uint64_t',
|
|
@@ -14488,6 +14678,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
14488
14678
|
name: 'array_id',
|
|
14489
14679
|
type: 'uint16_t',
|
|
14490
14680
|
},
|
|
14681
|
+
{
|
|
14682
|
+
name: 'name',
|
|
14683
|
+
type: 'char',
|
|
14684
|
+
arrayLength: 10,
|
|
14685
|
+
},
|
|
14491
14686
|
{
|
|
14492
14687
|
name: 'data',
|
|
14493
14688
|
type: 'float',
|
|
@@ -14530,16 +14725,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
14530
14725
|
id: 370,
|
|
14531
14726
|
name: 'SMART_BATTERY_INFO',
|
|
14532
14727
|
fields: [
|
|
14533
|
-
{
|
|
14534
|
-
name: 'device_name',
|
|
14535
|
-
type: 'char',
|
|
14536
|
-
arrayLength: 50,
|
|
14537
|
-
},
|
|
14538
|
-
{
|
|
14539
|
-
name: 'serial_number',
|
|
14540
|
-
type: 'char',
|
|
14541
|
-
arrayLength: 16,
|
|
14542
|
-
},
|
|
14543
14728
|
{
|
|
14544
14729
|
name: 'capacity_full_specification',
|
|
14545
14730
|
type: 'int32_t',
|
|
@@ -14580,6 +14765,16 @@ const MESSAGE_DEFINITIONS = [
|
|
|
14580
14765
|
name: 'type',
|
|
14581
14766
|
type: 'uint8_t',
|
|
14582
14767
|
},
|
|
14768
|
+
{
|
|
14769
|
+
name: 'serial_number',
|
|
14770
|
+
type: 'char',
|
|
14771
|
+
arrayLength: 16,
|
|
14772
|
+
},
|
|
14773
|
+
{
|
|
14774
|
+
name: 'device_name',
|
|
14775
|
+
type: 'char',
|
|
14776
|
+
arrayLength: 50,
|
|
14777
|
+
},
|
|
14583
14778
|
{
|
|
14584
14779
|
name: 'charging_maximum_voltage',
|
|
14585
14780
|
type: 'uint16_t',
|
|
@@ -14608,6 +14803,44 @@ const MESSAGE_DEFINITIONS = [
|
|
|
14608
14803
|
},
|
|
14609
14804
|
]
|
|
14610
14805
|
},
|
|
14806
|
+
{
|
|
14807
|
+
id: 361,
|
|
14808
|
+
name: 'FIGURE_EIGHT_EXECUTION_STATUS',
|
|
14809
|
+
fields: [
|
|
14810
|
+
{
|
|
14811
|
+
name: 'time_usec',
|
|
14812
|
+
type: 'uint64_t',
|
|
14813
|
+
},
|
|
14814
|
+
{
|
|
14815
|
+
name: 'major_radius',
|
|
14816
|
+
type: 'float',
|
|
14817
|
+
},
|
|
14818
|
+
{
|
|
14819
|
+
name: 'minor_radius',
|
|
14820
|
+
type: 'float',
|
|
14821
|
+
},
|
|
14822
|
+
{
|
|
14823
|
+
name: 'orientation',
|
|
14824
|
+
type: 'float',
|
|
14825
|
+
},
|
|
14826
|
+
{
|
|
14827
|
+
name: 'x',
|
|
14828
|
+
type: 'int32_t',
|
|
14829
|
+
},
|
|
14830
|
+
{
|
|
14831
|
+
name: 'y',
|
|
14832
|
+
type: 'int32_t',
|
|
14833
|
+
},
|
|
14834
|
+
{
|
|
14835
|
+
name: 'z',
|
|
14836
|
+
type: 'float',
|
|
14837
|
+
},
|
|
14838
|
+
{
|
|
14839
|
+
name: 'frame',
|
|
14840
|
+
type: 'uint8_t',
|
|
14841
|
+
},
|
|
14842
|
+
]
|
|
14843
|
+
},
|
|
14611
14844
|
{
|
|
14612
14845
|
id: 371,
|
|
14613
14846
|
name: 'FUEL_STATUS',
|
|
@@ -14650,21 +14883,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
14650
14883
|
id: 372,
|
|
14651
14884
|
name: 'BATTERY_INFO',
|
|
14652
14885
|
fields: [
|
|
14653
|
-
{
|
|
14654
|
-
name: 'name',
|
|
14655
|
-
type: 'char',
|
|
14656
|
-
arrayLength: 50,
|
|
14657
|
-
},
|
|
14658
|
-
{
|
|
14659
|
-
name: 'serial_number',
|
|
14660
|
-
type: 'char',
|
|
14661
|
-
arrayLength: 32,
|
|
14662
|
-
},
|
|
14663
|
-
{
|
|
14664
|
-
name: 'manufacture_date',
|
|
14665
|
-
type: 'char',
|
|
14666
|
-
arrayLength: 9,
|
|
14667
|
-
},
|
|
14668
14886
|
{
|
|
14669
14887
|
name: 'discharge_minimum_voltage',
|
|
14670
14888
|
type: 'float',
|
|
@@ -14733,9 +14951,24 @@ const MESSAGE_DEFINITIONS = [
|
|
|
14733
14951
|
name: 'cells_in_series',
|
|
14734
14952
|
type: 'uint8_t',
|
|
14735
14953
|
},
|
|
14736
|
-
|
|
14737
|
-
|
|
14738
|
-
|
|
14954
|
+
{
|
|
14955
|
+
name: 'manufacture_date',
|
|
14956
|
+
type: 'char',
|
|
14957
|
+
arrayLength: 9,
|
|
14958
|
+
},
|
|
14959
|
+
{
|
|
14960
|
+
name: 'serial_number',
|
|
14961
|
+
type: 'char',
|
|
14962
|
+
arrayLength: 32,
|
|
14963
|
+
},
|
|
14964
|
+
{
|
|
14965
|
+
name: 'name',
|
|
14966
|
+
type: 'char',
|
|
14967
|
+
arrayLength: 50,
|
|
14968
|
+
},
|
|
14969
|
+
]
|
|
14970
|
+
},
|
|
14971
|
+
{
|
|
14739
14972
|
id: 373,
|
|
14740
14973
|
name: 'GENERATOR_STATUS',
|
|
14741
14974
|
fields: [
|
|
@@ -14789,11 +15022,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
14789
15022
|
id: 375,
|
|
14790
15023
|
name: 'ACTUATOR_OUTPUT_STATUS',
|
|
14791
15024
|
fields: [
|
|
14792
|
-
{
|
|
14793
|
-
name: 'actuator',
|
|
14794
|
-
type: 'float',
|
|
14795
|
-
arrayLength: 32,
|
|
14796
|
-
},
|
|
14797
15025
|
{
|
|
14798
15026
|
name: 'time_usec',
|
|
14799
15027
|
type: 'uint64_t',
|
|
@@ -14802,6 +15030,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
14802
15030
|
name: 'active',
|
|
14803
15031
|
type: 'uint32_t',
|
|
14804
15032
|
},
|
|
15033
|
+
{
|
|
15034
|
+
name: 'actuator',
|
|
15035
|
+
type: 'float',
|
|
15036
|
+
arrayLength: 32,
|
|
15037
|
+
},
|
|
14805
15038
|
]
|
|
14806
15039
|
},
|
|
14807
15040
|
{
|
|
@@ -14834,11 +15067,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
14834
15067
|
id: 385,
|
|
14835
15068
|
name: 'TUNNEL',
|
|
14836
15069
|
fields: [
|
|
14837
|
-
{
|
|
14838
|
-
name: 'payload',
|
|
14839
|
-
type: 'uint8_t',
|
|
14840
|
-
arrayLength: 128,
|
|
14841
|
-
},
|
|
14842
15070
|
{
|
|
14843
15071
|
name: 'payload_type',
|
|
14844
15072
|
type: 'uint16_t',
|
|
@@ -14855,17 +15083,17 @@ const MESSAGE_DEFINITIONS = [
|
|
|
14855
15083
|
name: 'payload_length',
|
|
14856
15084
|
type: 'uint8_t',
|
|
14857
15085
|
},
|
|
15086
|
+
{
|
|
15087
|
+
name: 'payload',
|
|
15088
|
+
type: 'uint8_t',
|
|
15089
|
+
arrayLength: 128,
|
|
15090
|
+
},
|
|
14858
15091
|
]
|
|
14859
15092
|
},
|
|
14860
15093
|
{
|
|
14861
15094
|
id: 386,
|
|
14862
15095
|
name: 'CAN_FRAME',
|
|
14863
15096
|
fields: [
|
|
14864
|
-
{
|
|
14865
|
-
name: 'data',
|
|
14866
|
-
type: 'uint8_t',
|
|
14867
|
-
arrayLength: 8,
|
|
14868
|
-
},
|
|
14869
15097
|
{
|
|
14870
15098
|
name: 'id',
|
|
14871
15099
|
type: 'uint32_t',
|
|
@@ -14886,6 +15114,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
14886
15114
|
name: 'len',
|
|
14887
15115
|
type: 'uint8_t',
|
|
14888
15116
|
},
|
|
15117
|
+
{
|
|
15118
|
+
name: 'data',
|
|
15119
|
+
type: 'uint8_t',
|
|
15120
|
+
arrayLength: 8,
|
|
15121
|
+
},
|
|
14889
15122
|
]
|
|
14890
15123
|
},
|
|
14891
15124
|
{
|
|
@@ -14893,29 +15126,20 @@ const MESSAGE_DEFINITIONS = [
|
|
|
14893
15126
|
name: 'ONBOARD_COMPUTER_STATUS',
|
|
14894
15127
|
fields: [
|
|
14895
15128
|
{
|
|
14896
|
-
name: '
|
|
14897
|
-
type: '
|
|
14898
|
-
arrayLength: 6,
|
|
15129
|
+
name: 'time_usec',
|
|
15130
|
+
type: 'uint64_t',
|
|
14899
15131
|
},
|
|
14900
15132
|
{
|
|
14901
|
-
name: '
|
|
15133
|
+
name: 'uptime',
|
|
14902
15134
|
type: 'uint32_t',
|
|
14903
|
-
arrayLength: 6,
|
|
14904
15135
|
},
|
|
14905
15136
|
{
|
|
14906
|
-
name: '
|
|
15137
|
+
name: 'ram_usage',
|
|
14907
15138
|
type: 'uint32_t',
|
|
14908
|
-
arrayLength: 6,
|
|
14909
15139
|
},
|
|
14910
15140
|
{
|
|
14911
|
-
name: '
|
|
14912
|
-
type: 'uint32_t',
|
|
14913
|
-
arrayLength: 6,
|
|
14914
|
-
},
|
|
14915
|
-
{
|
|
14916
|
-
name: 'link_rx_max',
|
|
15141
|
+
name: 'ram_total',
|
|
14917
15142
|
type: 'uint32_t',
|
|
14918
|
-
arrayLength: 6,
|
|
14919
15143
|
},
|
|
14920
15144
|
{
|
|
14921
15145
|
name: 'storage_type',
|
|
@@ -14933,28 +15157,29 @@ const MESSAGE_DEFINITIONS = [
|
|
|
14933
15157
|
arrayLength: 4,
|
|
14934
15158
|
},
|
|
14935
15159
|
{
|
|
14936
|
-
name: '
|
|
14937
|
-
type: '
|
|
14938
|
-
arrayLength:
|
|
15160
|
+
name: 'link_type',
|
|
15161
|
+
type: 'uint32_t',
|
|
15162
|
+
arrayLength: 6,
|
|
14939
15163
|
},
|
|
14940
15164
|
{
|
|
14941
|
-
name: '
|
|
14942
|
-
type: '
|
|
14943
|
-
arrayLength:
|
|
15165
|
+
name: 'link_tx_rate',
|
|
15166
|
+
type: 'uint32_t',
|
|
15167
|
+
arrayLength: 6,
|
|
14944
15168
|
},
|
|
14945
15169
|
{
|
|
14946
|
-
name: '
|
|
14947
|
-
type: '
|
|
15170
|
+
name: 'link_rx_rate',
|
|
15171
|
+
type: 'uint32_t',
|
|
15172
|
+
arrayLength: 6,
|
|
14948
15173
|
},
|
|
14949
15174
|
{
|
|
14950
|
-
name: '
|
|
14951
|
-
type: '
|
|
14952
|
-
arrayLength:
|
|
15175
|
+
name: 'link_tx_max',
|
|
15176
|
+
type: 'uint32_t',
|
|
15177
|
+
arrayLength: 6,
|
|
14953
15178
|
},
|
|
14954
15179
|
{
|
|
14955
|
-
name: '
|
|
14956
|
-
type: '
|
|
14957
|
-
arrayLength:
|
|
15180
|
+
name: 'link_rx_max',
|
|
15181
|
+
type: 'uint32_t',
|
|
15182
|
+
arrayLength: 6,
|
|
14958
15183
|
},
|
|
14959
15184
|
{
|
|
14960
15185
|
name: 'fan_speed',
|
|
@@ -14962,46 +15187,49 @@ const MESSAGE_DEFINITIONS = [
|
|
|
14962
15187
|
arrayLength: 4,
|
|
14963
15188
|
},
|
|
14964
15189
|
{
|
|
14965
|
-
name: '
|
|
14966
|
-
type: '
|
|
15190
|
+
name: 'type',
|
|
15191
|
+
type: 'uint8_t',
|
|
14967
15192
|
},
|
|
14968
15193
|
{
|
|
14969
|
-
name: '
|
|
15194
|
+
name: 'cpu_cores',
|
|
14970
15195
|
type: 'uint8_t',
|
|
14971
|
-
arrayLength:
|
|
15196
|
+
arrayLength: 8,
|
|
14972
15197
|
},
|
|
14973
15198
|
{
|
|
14974
|
-
name: '
|
|
14975
|
-
type: '
|
|
15199
|
+
name: 'cpu_combined',
|
|
15200
|
+
type: 'uint8_t',
|
|
15201
|
+
arrayLength: 10,
|
|
14976
15202
|
},
|
|
14977
15203
|
{
|
|
14978
|
-
name: '
|
|
14979
|
-
type: '
|
|
15204
|
+
name: 'gpu_cores',
|
|
15205
|
+
type: 'uint8_t',
|
|
15206
|
+
arrayLength: 4,
|
|
14980
15207
|
},
|
|
14981
15208
|
{
|
|
14982
|
-
name: '
|
|
15209
|
+
name: 'gpu_combined',
|
|
14983
15210
|
type: 'uint8_t',
|
|
15211
|
+
arrayLength: 10,
|
|
14984
15212
|
},
|
|
14985
15213
|
{
|
|
14986
15214
|
name: 'temperature_board',
|
|
14987
15215
|
type: 'int8_t',
|
|
14988
15216
|
},
|
|
15217
|
+
{
|
|
15218
|
+
name: 'temperature_core',
|
|
15219
|
+
type: 'int8_t',
|
|
15220
|
+
arrayLength: 8,
|
|
15221
|
+
},
|
|
15222
|
+
{
|
|
15223
|
+
name: 'status_flags',
|
|
15224
|
+
type: 'uint16_t',
|
|
15225
|
+
extension: true,
|
|
15226
|
+
},
|
|
14989
15227
|
]
|
|
14990
15228
|
},
|
|
14991
15229
|
{
|
|
14992
15230
|
id: 395,
|
|
14993
15231
|
name: 'COMPONENT_INFORMATION',
|
|
14994
15232
|
fields: [
|
|
14995
|
-
{
|
|
14996
|
-
name: 'general_metadata_uri',
|
|
14997
|
-
type: 'char',
|
|
14998
|
-
arrayLength: 100,
|
|
14999
|
-
},
|
|
15000
|
-
{
|
|
15001
|
-
name: 'peripherals_metadata_uri',
|
|
15002
|
-
type: 'char',
|
|
15003
|
-
arrayLength: 100,
|
|
15004
|
-
},
|
|
15005
15233
|
{
|
|
15006
15234
|
name: 'time_boot_ms',
|
|
15007
15235
|
type: 'uint32_t',
|
|
@@ -15014,6 +15242,16 @@ const MESSAGE_DEFINITIONS = [
|
|
|
15014
15242
|
name: 'peripherals_metadata_file_crc',
|
|
15015
15243
|
type: 'uint32_t',
|
|
15016
15244
|
},
|
|
15245
|
+
{
|
|
15246
|
+
name: 'general_metadata_uri',
|
|
15247
|
+
type: 'char',
|
|
15248
|
+
arrayLength: 100,
|
|
15249
|
+
},
|
|
15250
|
+
{
|
|
15251
|
+
name: 'peripherals_metadata_uri',
|
|
15252
|
+
type: 'char',
|
|
15253
|
+
arrayLength: 100,
|
|
15254
|
+
},
|
|
15017
15255
|
]
|
|
15018
15256
|
},
|
|
15019
15257
|
{
|
|
@@ -15021,17 +15259,24 @@ const MESSAGE_DEFINITIONS = [
|
|
|
15021
15259
|
name: 'COMPONENT_INFORMATION_BASIC',
|
|
15022
15260
|
fields: [
|
|
15023
15261
|
{
|
|
15024
|
-
name: '
|
|
15025
|
-
type: '
|
|
15026
|
-
arrayLength: 32,
|
|
15262
|
+
name: 'capabilities',
|
|
15263
|
+
type: 'uint64_t',
|
|
15027
15264
|
},
|
|
15028
15265
|
{
|
|
15029
|
-
name: '
|
|
15266
|
+
name: 'time_boot_ms',
|
|
15267
|
+
type: 'uint32_t',
|
|
15268
|
+
},
|
|
15269
|
+
{
|
|
15270
|
+
name: 'time_manufacture_s',
|
|
15271
|
+
type: 'uint32_t',
|
|
15272
|
+
},
|
|
15273
|
+
{
|
|
15274
|
+
name: 'vendor_name',
|
|
15030
15275
|
type: 'char',
|
|
15031
15276
|
arrayLength: 32,
|
|
15032
15277
|
},
|
|
15033
15278
|
{
|
|
15034
|
-
name: '
|
|
15279
|
+
name: 'model_name',
|
|
15035
15280
|
type: 'char',
|
|
15036
15281
|
arrayLength: 32,
|
|
15037
15282
|
},
|
|
@@ -15046,16 +15291,9 @@ const MESSAGE_DEFINITIONS = [
|
|
|
15046
15291
|
arrayLength: 24,
|
|
15047
15292
|
},
|
|
15048
15293
|
{
|
|
15049
|
-
name: '
|
|
15050
|
-
type: '
|
|
15051
|
-
|
|
15052
|
-
{
|
|
15053
|
-
name: 'time_boot_ms',
|
|
15054
|
-
type: 'uint32_t',
|
|
15055
|
-
},
|
|
15056
|
-
{
|
|
15057
|
-
name: 'time_manufacture_s',
|
|
15058
|
-
type: 'uint32_t',
|
|
15294
|
+
name: 'serial_number',
|
|
15295
|
+
type: 'char',
|
|
15296
|
+
arrayLength: 32,
|
|
15059
15297
|
},
|
|
15060
15298
|
]
|
|
15061
15299
|
},
|
|
@@ -15063,11 +15301,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
15063
15301
|
id: 397,
|
|
15064
15302
|
name: 'COMPONENT_METADATA',
|
|
15065
15303
|
fields: [
|
|
15066
|
-
{
|
|
15067
|
-
name: 'uri',
|
|
15068
|
-
type: 'char',
|
|
15069
|
-
arrayLength: 100,
|
|
15070
|
-
},
|
|
15071
15304
|
{
|
|
15072
15305
|
name: 'time_boot_ms',
|
|
15073
15306
|
type: 'uint32_t',
|
|
@@ -15076,17 +15309,17 @@ const MESSAGE_DEFINITIONS = [
|
|
|
15076
15309
|
name: 'file_crc',
|
|
15077
15310
|
type: 'uint32_t',
|
|
15078
15311
|
},
|
|
15312
|
+
{
|
|
15313
|
+
name: 'uri',
|
|
15314
|
+
type: 'char',
|
|
15315
|
+
arrayLength: 100,
|
|
15316
|
+
},
|
|
15079
15317
|
]
|
|
15080
15318
|
},
|
|
15081
15319
|
{
|
|
15082
15320
|
id: 400,
|
|
15083
15321
|
name: 'PLAY_TUNE_V2',
|
|
15084
15322
|
fields: [
|
|
15085
|
-
{
|
|
15086
|
-
name: 'tune',
|
|
15087
|
-
type: 'char',
|
|
15088
|
-
arrayLength: 248,
|
|
15089
|
-
},
|
|
15090
15323
|
{
|
|
15091
15324
|
name: 'format',
|
|
15092
15325
|
type: 'uint32_t',
|
|
@@ -15099,6 +15332,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
15099
15332
|
name: 'target_component',
|
|
15100
15333
|
type: 'uint8_t',
|
|
15101
15334
|
},
|
|
15335
|
+
{
|
|
15336
|
+
name: 'tune',
|
|
15337
|
+
type: 'char',
|
|
15338
|
+
arrayLength: 248,
|
|
15339
|
+
},
|
|
15102
15340
|
]
|
|
15103
15341
|
},
|
|
15104
15342
|
{
|
|
@@ -15123,11 +15361,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
15123
15361
|
id: 410,
|
|
15124
15362
|
name: 'EVENT',
|
|
15125
15363
|
fields: [
|
|
15126
|
-
{
|
|
15127
|
-
name: 'arguments',
|
|
15128
|
-
type: 'uint8_t',
|
|
15129
|
-
arrayLength: 40,
|
|
15130
|
-
},
|
|
15131
15364
|
{
|
|
15132
15365
|
name: 'id',
|
|
15133
15366
|
type: 'uint32_t',
|
|
@@ -15152,6 +15385,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
15152
15385
|
name: 'log_levels',
|
|
15153
15386
|
type: 'uint8_t',
|
|
15154
15387
|
},
|
|
15388
|
+
{
|
|
15389
|
+
name: 'arguments',
|
|
15390
|
+
type: 'uint8_t',
|
|
15391
|
+
arrayLength: 40,
|
|
15392
|
+
},
|
|
15155
15393
|
]
|
|
15156
15394
|
},
|
|
15157
15395
|
{
|
|
@@ -15220,11 +15458,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
15220
15458
|
id: 435,
|
|
15221
15459
|
name: 'AVAILABLE_MODES',
|
|
15222
15460
|
fields: [
|
|
15223
|
-
{
|
|
15224
|
-
name: 'mode_name',
|
|
15225
|
-
type: 'char',
|
|
15226
|
-
arrayLength: 35,
|
|
15227
|
-
},
|
|
15228
15461
|
{
|
|
15229
15462
|
name: 'custom_mode',
|
|
15230
15463
|
type: 'uint32_t',
|
|
@@ -15245,6 +15478,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
15245
15478
|
name: 'standard_mode',
|
|
15246
15479
|
type: 'uint8_t',
|
|
15247
15480
|
},
|
|
15481
|
+
{
|
|
15482
|
+
name: 'mode_name',
|
|
15483
|
+
type: 'char',
|
|
15484
|
+
arrayLength: 35,
|
|
15485
|
+
},
|
|
15248
15486
|
]
|
|
15249
15487
|
},
|
|
15250
15488
|
{
|
|
@@ -15329,11 +15567,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
15329
15567
|
id: 387,
|
|
15330
15568
|
name: 'CANFD_FRAME',
|
|
15331
15569
|
fields: [
|
|
15332
|
-
{
|
|
15333
|
-
name: 'data',
|
|
15334
|
-
type: 'uint8_t',
|
|
15335
|
-
arrayLength: 64,
|
|
15336
|
-
},
|
|
15337
15570
|
{
|
|
15338
15571
|
name: 'id',
|
|
15339
15572
|
type: 'uint32_t',
|
|
@@ -15354,6 +15587,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
15354
15587
|
name: 'len',
|
|
15355
15588
|
type: 'uint8_t',
|
|
15356
15589
|
},
|
|
15590
|
+
{
|
|
15591
|
+
name: 'data',
|
|
15592
|
+
type: 'uint8_t',
|
|
15593
|
+
arrayLength: 64,
|
|
15594
|
+
},
|
|
15357
15595
|
]
|
|
15358
15596
|
},
|
|
15359
15597
|
{
|
|
@@ -15391,15 +15629,15 @@ const MESSAGE_DEFINITIONS = [
|
|
|
15391
15629
|
id: 9000,
|
|
15392
15630
|
name: 'WHEEL_DISTANCE',
|
|
15393
15631
|
fields: [
|
|
15632
|
+
{
|
|
15633
|
+
name: 'time_usec',
|
|
15634
|
+
type: 'uint64_t',
|
|
15635
|
+
},
|
|
15394
15636
|
{
|
|
15395
15637
|
name: 'distance',
|
|
15396
15638
|
type: 'double',
|
|
15397
15639
|
arrayLength: 16,
|
|
15398
15640
|
},
|
|
15399
|
-
{
|
|
15400
|
-
name: 'time_usec',
|
|
15401
|
-
type: 'uint64_t',
|
|
15402
|
-
},
|
|
15403
15641
|
{
|
|
15404
15642
|
name: 'count',
|
|
15405
15643
|
type: 'uint8_t',
|
|
@@ -15449,30 +15687,30 @@ const MESSAGE_DEFINITIONS = [
|
|
|
15449
15687
|
name: 'OPEN_DRONE_ID_BASIC_ID',
|
|
15450
15688
|
fields: [
|
|
15451
15689
|
{
|
|
15452
|
-
name: '
|
|
15690
|
+
name: 'target_system',
|
|
15453
15691
|
type: 'uint8_t',
|
|
15454
|
-
arrayLength: 20,
|
|
15455
15692
|
},
|
|
15456
15693
|
{
|
|
15457
|
-
name: '
|
|
15694
|
+
name: 'target_component',
|
|
15458
15695
|
type: 'uint8_t',
|
|
15459
|
-
arrayLength: 20,
|
|
15460
15696
|
},
|
|
15461
15697
|
{
|
|
15462
|
-
name: '
|
|
15698
|
+
name: 'id_or_mac',
|
|
15463
15699
|
type: 'uint8_t',
|
|
15700
|
+
arrayLength: 20,
|
|
15464
15701
|
},
|
|
15465
15702
|
{
|
|
15466
|
-
name: '
|
|
15703
|
+
name: 'id_type',
|
|
15467
15704
|
type: 'uint8_t',
|
|
15468
15705
|
},
|
|
15469
15706
|
{
|
|
15470
|
-
name: '
|
|
15707
|
+
name: 'ua_type',
|
|
15471
15708
|
type: 'uint8_t',
|
|
15472
15709
|
},
|
|
15473
15710
|
{
|
|
15474
|
-
name: '
|
|
15711
|
+
name: 'uas_id',
|
|
15475
15712
|
type: 'uint8_t',
|
|
15713
|
+
arrayLength: 20,
|
|
15476
15714
|
},
|
|
15477
15715
|
]
|
|
15478
15716
|
},
|
|
@@ -15480,11 +15718,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
15480
15718
|
id: 12901,
|
|
15481
15719
|
name: 'OPEN_DRONE_ID_LOCATION',
|
|
15482
15720
|
fields: [
|
|
15483
|
-
{
|
|
15484
|
-
name: 'id_or_mac',
|
|
15485
|
-
type: 'uint8_t',
|
|
15486
|
-
arrayLength: 20,
|
|
15487
|
-
},
|
|
15488
15721
|
{
|
|
15489
15722
|
name: 'latitude',
|
|
15490
15723
|
type: 'int32_t',
|
|
@@ -15529,6 +15762,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
15529
15762
|
name: 'target_component',
|
|
15530
15763
|
type: 'uint8_t',
|
|
15531
15764
|
},
|
|
15765
|
+
{
|
|
15766
|
+
name: 'id_or_mac',
|
|
15767
|
+
type: 'uint8_t',
|
|
15768
|
+
arrayLength: 20,
|
|
15769
|
+
},
|
|
15532
15770
|
{
|
|
15533
15771
|
name: 'status',
|
|
15534
15772
|
type: 'uint8_t',
|
|
@@ -15563,16 +15801,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
15563
15801
|
id: 12902,
|
|
15564
15802
|
name: 'OPEN_DRONE_ID_AUTHENTICATION',
|
|
15565
15803
|
fields: [
|
|
15566
|
-
{
|
|
15567
|
-
name: 'authentication_data',
|
|
15568
|
-
type: 'uint8_t',
|
|
15569
|
-
arrayLength: 23,
|
|
15570
|
-
},
|
|
15571
|
-
{
|
|
15572
|
-
name: 'id_or_mac',
|
|
15573
|
-
type: 'uint8_t',
|
|
15574
|
-
arrayLength: 20,
|
|
15575
|
-
},
|
|
15576
15804
|
{
|
|
15577
15805
|
name: 'timestamp',
|
|
15578
15806
|
type: 'uint32_t',
|
|
@@ -15585,6 +15813,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
15585
15813
|
name: 'target_component',
|
|
15586
15814
|
type: 'uint8_t',
|
|
15587
15815
|
},
|
|
15816
|
+
{
|
|
15817
|
+
name: 'id_or_mac',
|
|
15818
|
+
type: 'uint8_t',
|
|
15819
|
+
arrayLength: 20,
|
|
15820
|
+
},
|
|
15588
15821
|
{
|
|
15589
15822
|
name: 'authentication_type',
|
|
15590
15823
|
type: 'uint8_t',
|
|
@@ -15601,6 +15834,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
15601
15834
|
name: 'length',
|
|
15602
15835
|
type: 'uint8_t',
|
|
15603
15836
|
},
|
|
15837
|
+
{
|
|
15838
|
+
name: 'authentication_data',
|
|
15839
|
+
type: 'uint8_t',
|
|
15840
|
+
arrayLength: 23,
|
|
15841
|
+
},
|
|
15604
15842
|
]
|
|
15605
15843
|
},
|
|
15606
15844
|
{
|
|
@@ -15608,38 +15846,33 @@ const MESSAGE_DEFINITIONS = [
|
|
|
15608
15846
|
name: 'OPEN_DRONE_ID_SELF_ID',
|
|
15609
15847
|
fields: [
|
|
15610
15848
|
{
|
|
15611
|
-
name: '
|
|
15612
|
-
type: 'char',
|
|
15613
|
-
arrayLength: 23,
|
|
15614
|
-
},
|
|
15615
|
-
{
|
|
15616
|
-
name: 'id_or_mac',
|
|
15849
|
+
name: 'target_system',
|
|
15617
15850
|
type: 'uint8_t',
|
|
15618
|
-
arrayLength: 20,
|
|
15619
15851
|
},
|
|
15620
15852
|
{
|
|
15621
|
-
name: '
|
|
15853
|
+
name: 'target_component',
|
|
15622
15854
|
type: 'uint8_t',
|
|
15623
15855
|
},
|
|
15624
15856
|
{
|
|
15625
|
-
name: '
|
|
15857
|
+
name: 'id_or_mac',
|
|
15626
15858
|
type: 'uint8_t',
|
|
15859
|
+
arrayLength: 20,
|
|
15627
15860
|
},
|
|
15628
15861
|
{
|
|
15629
15862
|
name: 'description_type',
|
|
15630
15863
|
type: 'uint8_t',
|
|
15631
15864
|
},
|
|
15865
|
+
{
|
|
15866
|
+
name: 'description',
|
|
15867
|
+
type: 'char',
|
|
15868
|
+
arrayLength: 23,
|
|
15869
|
+
},
|
|
15632
15870
|
]
|
|
15633
15871
|
},
|
|
15634
15872
|
{
|
|
15635
15873
|
id: 12904,
|
|
15636
15874
|
name: 'OPEN_DRONE_ID_SYSTEM',
|
|
15637
15875
|
fields: [
|
|
15638
|
-
{
|
|
15639
|
-
name: 'id_or_mac',
|
|
15640
|
-
type: 'uint8_t',
|
|
15641
|
-
arrayLength: 20,
|
|
15642
|
-
},
|
|
15643
15876
|
{
|
|
15644
15877
|
name: 'operator_latitude',
|
|
15645
15878
|
type: 'int32_t',
|
|
@@ -15680,6 +15913,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
15680
15913
|
name: 'target_component',
|
|
15681
15914
|
type: 'uint8_t',
|
|
15682
15915
|
},
|
|
15916
|
+
{
|
|
15917
|
+
name: 'id_or_mac',
|
|
15918
|
+
type: 'uint8_t',
|
|
15919
|
+
arrayLength: 20,
|
|
15920
|
+
},
|
|
15683
15921
|
{
|
|
15684
15922
|
name: 'operator_location_type',
|
|
15685
15923
|
type: 'uint8_t',
|
|
@@ -15703,50 +15941,45 @@ const MESSAGE_DEFINITIONS = [
|
|
|
15703
15941
|
name: 'OPEN_DRONE_ID_OPERATOR_ID',
|
|
15704
15942
|
fields: [
|
|
15705
15943
|
{
|
|
15706
|
-
name: '
|
|
15944
|
+
name: 'target_system',
|
|
15707
15945
|
type: 'uint8_t',
|
|
15708
|
-
arrayLength: 20,
|
|
15709
15946
|
},
|
|
15710
15947
|
{
|
|
15711
|
-
name: '
|
|
15712
|
-
type: 'char',
|
|
15713
|
-
arrayLength: 20,
|
|
15714
|
-
},
|
|
15715
|
-
{
|
|
15716
|
-
name: 'target_system',
|
|
15948
|
+
name: 'target_component',
|
|
15717
15949
|
type: 'uint8_t',
|
|
15718
15950
|
},
|
|
15719
15951
|
{
|
|
15720
|
-
name: '
|
|
15952
|
+
name: 'id_or_mac',
|
|
15721
15953
|
type: 'uint8_t',
|
|
15954
|
+
arrayLength: 20,
|
|
15722
15955
|
},
|
|
15723
15956
|
{
|
|
15724
15957
|
name: 'operator_id_type',
|
|
15725
15958
|
type: 'uint8_t',
|
|
15726
15959
|
},
|
|
15960
|
+
{
|
|
15961
|
+
name: 'operator_id',
|
|
15962
|
+
type: 'char',
|
|
15963
|
+
arrayLength: 20,
|
|
15964
|
+
},
|
|
15727
15965
|
]
|
|
15728
15966
|
},
|
|
15729
15967
|
{
|
|
15730
15968
|
id: 12915,
|
|
15731
15969
|
name: 'OPEN_DRONE_ID_MESSAGE_PACK',
|
|
15732
|
-
fields: [
|
|
15733
|
-
{
|
|
15734
|
-
name: 'messages',
|
|
15735
|
-
type: 'uint8_t',
|
|
15736
|
-
arrayLength: 225,
|
|
15737
|
-
},
|
|
15970
|
+
fields: [
|
|
15738
15971
|
{
|
|
15739
|
-
name: '
|
|
15972
|
+
name: 'target_system',
|
|
15740
15973
|
type: 'uint8_t',
|
|
15741
|
-
arrayLength: 20,
|
|
15742
15974
|
},
|
|
15743
15975
|
{
|
|
15744
|
-
name: '
|
|
15976
|
+
name: 'target_component',
|
|
15745
15977
|
type: 'uint8_t',
|
|
15746
15978
|
},
|
|
15747
15979
|
{
|
|
15748
|
-
name: '
|
|
15980
|
+
name: 'id_or_mac',
|
|
15749
15981
|
type: 'uint8_t',
|
|
15982
|
+
arrayLength: 20,
|
|
15750
15983
|
},
|
|
15751
15984
|
{
|
|
15752
15985
|
name: 'single_message_size',
|
|
@@ -15756,21 +15989,26 @@ const MESSAGE_DEFINITIONS = [
|
|
|
15756
15989
|
name: 'msg_pack_size',
|
|
15757
15990
|
type: 'uint8_t',
|
|
15758
15991
|
},
|
|
15992
|
+
{
|
|
15993
|
+
name: 'messages',
|
|
15994
|
+
type: 'uint8_t',
|
|
15995
|
+
arrayLength: 225,
|
|
15996
|
+
},
|
|
15759
15997
|
]
|
|
15760
15998
|
},
|
|
15761
15999
|
{
|
|
15762
16000
|
id: 12918,
|
|
15763
16001
|
name: 'OPEN_DRONE_ID_ARM_STATUS',
|
|
15764
16002
|
fields: [
|
|
16003
|
+
{
|
|
16004
|
+
name: 'status',
|
|
16005
|
+
type: 'uint8_t',
|
|
16006
|
+
},
|
|
15765
16007
|
{
|
|
15766
16008
|
name: 'error',
|
|
15767
16009
|
type: 'char',
|
|
15768
16010
|
arrayLength: 50,
|
|
15769
16011
|
},
|
|
15770
|
-
{
|
|
15771
|
-
name: 'status',
|
|
15772
|
-
type: 'uint8_t',
|
|
15773
|
-
},
|
|
15774
16012
|
]
|
|
15775
16013
|
},
|
|
15776
16014
|
{
|
|
@@ -15825,11 +16063,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
15825
16063
|
id: 10001,
|
|
15826
16064
|
name: 'UAVIONIX_ADSB_OUT_CFG',
|
|
15827
16065
|
fields: [
|
|
15828
|
-
{
|
|
15829
|
-
name: 'callsign',
|
|
15830
|
-
type: 'char',
|
|
15831
|
-
arrayLength: 9,
|
|
15832
|
-
},
|
|
15833
16066
|
{
|
|
15834
16067
|
name: 'icao',
|
|
15835
16068
|
type: 'uint32_t',
|
|
@@ -15838,6 +16071,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
15838
16071
|
name: 'stallspeed',
|
|
15839
16072
|
type: 'uint16_t',
|
|
15840
16073
|
},
|
|
16074
|
+
{
|
|
16075
|
+
name: 'callsign',
|
|
16076
|
+
type: 'char',
|
|
16077
|
+
arrayLength: 9,
|
|
16078
|
+
},
|
|
15841
16079
|
{
|
|
15842
16080
|
name: 'emittertype',
|
|
15843
16081
|
type: 'uint8_t',
|
|
@@ -15976,11 +16214,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
15976
16214
|
id: 10007,
|
|
15977
16215
|
name: 'UAVIONIX_ADSB_OUT_CONTROL',
|
|
15978
16216
|
fields: [
|
|
15979
|
-
{
|
|
15980
|
-
name: 'flight_id',
|
|
15981
|
-
type: 'char',
|
|
15982
|
-
arrayLength: 8,
|
|
15983
|
-
},
|
|
15984
16217
|
{
|
|
15985
16218
|
name: 'baroaltmsl',
|
|
15986
16219
|
type: 'int32_t',
|
|
@@ -15997,6 +16230,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
15997
16230
|
name: 'emergencystatus',
|
|
15998
16231
|
type: 'uint8_t',
|
|
15999
16232
|
},
|
|
16233
|
+
{
|
|
16234
|
+
name: 'flight_id',
|
|
16235
|
+
type: 'char',
|
|
16236
|
+
arrayLength: 8,
|
|
16237
|
+
},
|
|
16000
16238
|
{
|
|
16001
16239
|
name: 'x_bit',
|
|
16002
16240
|
type: 'uint8_t',
|
|
@@ -16007,11 +16245,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
16007
16245
|
id: 10008,
|
|
16008
16246
|
name: 'UAVIONIX_ADSB_OUT_STATUS',
|
|
16009
16247
|
fields: [
|
|
16010
|
-
{
|
|
16011
|
-
name: 'flight_id',
|
|
16012
|
-
type: 'char',
|
|
16013
|
-
arrayLength: 8,
|
|
16014
|
-
},
|
|
16015
16248
|
{
|
|
16016
16249
|
name: 'squawk',
|
|
16017
16250
|
type: 'uint16_t',
|
|
@@ -16032,6 +16265,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
16032
16265
|
name: 'fault',
|
|
16033
16266
|
type: 'uint8_t',
|
|
16034
16267
|
},
|
|
16268
|
+
{
|
|
16269
|
+
name: 'flight_id',
|
|
16270
|
+
type: 'char',
|
|
16271
|
+
arrayLength: 8,
|
|
16272
|
+
},
|
|
16035
16273
|
]
|
|
16036
16274
|
},
|
|
16037
16275
|
{
|
|
@@ -16227,11 +16465,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
16227
16465
|
id: 50002,
|
|
16228
16466
|
name: 'HERELINK_VIDEO_STREAM_INFORMATION',
|
|
16229
16467
|
fields: [
|
|
16230
|
-
{
|
|
16231
|
-
name: 'uri',
|
|
16232
|
-
type: 'char',
|
|
16233
|
-
arrayLength: 230,
|
|
16234
|
-
},
|
|
16235
16468
|
{
|
|
16236
16469
|
name: 'framerate',
|
|
16237
16470
|
type: 'float',
|
|
@@ -16260,6 +16493,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
16260
16493
|
name: 'status',
|
|
16261
16494
|
type: 'uint8_t',
|
|
16262
16495
|
},
|
|
16496
|
+
{
|
|
16497
|
+
name: 'uri',
|
|
16498
|
+
type: 'char',
|
|
16499
|
+
arrayLength: 230,
|
|
16500
|
+
},
|
|
16263
16501
|
]
|
|
16264
16502
|
},
|
|
16265
16503
|
{
|
|
@@ -16923,17 +17161,17 @@ const MESSAGE_DEFINITIONS = [
|
|
|
16923
17161
|
name: 'DATA16',
|
|
16924
17162
|
fields: [
|
|
16925
17163
|
{
|
|
16926
|
-
name: '
|
|
17164
|
+
name: 'type',
|
|
16927
17165
|
type: 'uint8_t',
|
|
16928
|
-
arrayLength: 16,
|
|
16929
17166
|
},
|
|
16930
17167
|
{
|
|
16931
|
-
name: '
|
|
17168
|
+
name: 'len',
|
|
16932
17169
|
type: 'uint8_t',
|
|
16933
17170
|
},
|
|
16934
17171
|
{
|
|
16935
|
-
name: '
|
|
17172
|
+
name: 'data',
|
|
16936
17173
|
type: 'uint8_t',
|
|
17174
|
+
arrayLength: 16,
|
|
16937
17175
|
},
|
|
16938
17176
|
]
|
|
16939
17177
|
},
|
|
@@ -16942,17 +17180,17 @@ const MESSAGE_DEFINITIONS = [
|
|
|
16942
17180
|
name: 'DATA32',
|
|
16943
17181
|
fields: [
|
|
16944
17182
|
{
|
|
16945
|
-
name: '
|
|
17183
|
+
name: 'type',
|
|
16946
17184
|
type: 'uint8_t',
|
|
16947
|
-
arrayLength: 32,
|
|
16948
17185
|
},
|
|
16949
17186
|
{
|
|
16950
|
-
name: '
|
|
17187
|
+
name: 'len',
|
|
16951
17188
|
type: 'uint8_t',
|
|
16952
17189
|
},
|
|
16953
17190
|
{
|
|
16954
|
-
name: '
|
|
17191
|
+
name: 'data',
|
|
16955
17192
|
type: 'uint8_t',
|
|
17193
|
+
arrayLength: 32,
|
|
16956
17194
|
},
|
|
16957
17195
|
]
|
|
16958
17196
|
},
|
|
@@ -16961,17 +17199,17 @@ const MESSAGE_DEFINITIONS = [
|
|
|
16961
17199
|
name: 'DATA64',
|
|
16962
17200
|
fields: [
|
|
16963
17201
|
{
|
|
16964
|
-
name: '
|
|
17202
|
+
name: 'type',
|
|
16965
17203
|
type: 'uint8_t',
|
|
16966
|
-
arrayLength: 64,
|
|
16967
17204
|
},
|
|
16968
17205
|
{
|
|
16969
|
-
name: '
|
|
17206
|
+
name: 'len',
|
|
16970
17207
|
type: 'uint8_t',
|
|
16971
17208
|
},
|
|
16972
17209
|
{
|
|
16973
|
-
name: '
|
|
17210
|
+
name: 'data',
|
|
16974
17211
|
type: 'uint8_t',
|
|
17212
|
+
arrayLength: 64,
|
|
16975
17213
|
},
|
|
16976
17214
|
]
|
|
16977
17215
|
},
|
|
@@ -16980,17 +17218,17 @@ const MESSAGE_DEFINITIONS = [
|
|
|
16980
17218
|
name: 'DATA96',
|
|
16981
17219
|
fields: [
|
|
16982
17220
|
{
|
|
16983
|
-
name: '
|
|
17221
|
+
name: 'type',
|
|
16984
17222
|
type: 'uint8_t',
|
|
16985
|
-
arrayLength: 96,
|
|
16986
17223
|
},
|
|
16987
17224
|
{
|
|
16988
|
-
name: '
|
|
17225
|
+
name: 'len',
|
|
16989
17226
|
type: 'uint8_t',
|
|
16990
17227
|
},
|
|
16991
17228
|
{
|
|
16992
|
-
name: '
|
|
17229
|
+
name: 'data',
|
|
16993
17230
|
type: 'uint8_t',
|
|
17231
|
+
arrayLength: 96,
|
|
16994
17232
|
},
|
|
16995
17233
|
]
|
|
16996
17234
|
},
|
|
@@ -17369,11 +17607,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
17369
17607
|
id: 184,
|
|
17370
17608
|
name: 'REMOTE_LOG_DATA_BLOCK',
|
|
17371
17609
|
fields: [
|
|
17372
|
-
{
|
|
17373
|
-
name: 'data',
|
|
17374
|
-
type: 'uint8_t',
|
|
17375
|
-
arrayLength: 200,
|
|
17376
|
-
},
|
|
17377
17610
|
{
|
|
17378
17611
|
name: 'seqno',
|
|
17379
17612
|
type: 'uint32_t',
|
|
@@ -17386,6 +17619,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
17386
17619
|
name: 'target_component',
|
|
17387
17620
|
type: 'uint8_t',
|
|
17388
17621
|
},
|
|
17622
|
+
{
|
|
17623
|
+
name: 'data',
|
|
17624
|
+
type: 'uint8_t',
|
|
17625
|
+
arrayLength: 200,
|
|
17626
|
+
},
|
|
17389
17627
|
]
|
|
17390
17628
|
},
|
|
17391
17629
|
{
|
|
@@ -17414,11 +17652,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
17414
17652
|
id: 186,
|
|
17415
17653
|
name: 'LED_CONTROL',
|
|
17416
17654
|
fields: [
|
|
17417
|
-
{
|
|
17418
|
-
name: 'custom_bytes',
|
|
17419
|
-
type: 'uint8_t',
|
|
17420
|
-
arrayLength: 24,
|
|
17421
|
-
},
|
|
17422
17655
|
{
|
|
17423
17656
|
name: 'target_system',
|
|
17424
17657
|
type: 'uint8_t',
|
|
@@ -17439,17 +17672,17 @@ const MESSAGE_DEFINITIONS = [
|
|
|
17439
17672
|
name: 'custom_len',
|
|
17440
17673
|
type: 'uint8_t',
|
|
17441
17674
|
},
|
|
17675
|
+
{
|
|
17676
|
+
name: 'custom_bytes',
|
|
17677
|
+
type: 'uint8_t',
|
|
17678
|
+
arrayLength: 24,
|
|
17679
|
+
},
|
|
17442
17680
|
]
|
|
17443
17681
|
},
|
|
17444
17682
|
{
|
|
17445
17683
|
id: 191,
|
|
17446
17684
|
name: 'MAG_CAL_PROGRESS',
|
|
17447
17685
|
fields: [
|
|
17448
|
-
{
|
|
17449
|
-
name: 'completion_mask',
|
|
17450
|
-
type: 'uint8_t',
|
|
17451
|
-
arrayLength: 10,
|
|
17452
|
-
},
|
|
17453
17686
|
{
|
|
17454
17687
|
name: 'direction_x',
|
|
17455
17688
|
type: 'float',
|
|
@@ -17482,6 +17715,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
17482
17715
|
name: 'completion_pct',
|
|
17483
17716
|
type: 'uint8_t',
|
|
17484
17717
|
},
|
|
17718
|
+
{
|
|
17719
|
+
name: 'completion_mask',
|
|
17720
|
+
type: 'uint8_t',
|
|
17721
|
+
arrayLength: 10,
|
|
17722
|
+
},
|
|
17485
17723
|
]
|
|
17486
17724
|
},
|
|
17487
17725
|
{
|
|
@@ -17756,17 +17994,17 @@ const MESSAGE_DEFINITIONS = [
|
|
|
17756
17994
|
name: 'GOPRO_GET_RESPONSE',
|
|
17757
17995
|
fields: [
|
|
17758
17996
|
{
|
|
17759
|
-
name: '
|
|
17997
|
+
name: 'cmd_id',
|
|
17760
17998
|
type: 'uint8_t',
|
|
17761
|
-
arrayLength: 4,
|
|
17762
17999
|
},
|
|
17763
18000
|
{
|
|
17764
|
-
name: '
|
|
18001
|
+
name: 'status',
|
|
17765
18002
|
type: 'uint8_t',
|
|
17766
18003
|
},
|
|
17767
18004
|
{
|
|
17768
|
-
name: '
|
|
18005
|
+
name: 'value',
|
|
17769
18006
|
type: 'uint8_t',
|
|
18007
|
+
arrayLength: 4,
|
|
17770
18008
|
},
|
|
17771
18009
|
]
|
|
17772
18010
|
},
|
|
@@ -17774,11 +18012,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
17774
18012
|
id: 218,
|
|
17775
18013
|
name: 'GOPRO_SET_REQUEST',
|
|
17776
18014
|
fields: [
|
|
17777
|
-
{
|
|
17778
|
-
name: 'value',
|
|
17779
|
-
type: 'uint8_t',
|
|
17780
|
-
arrayLength: 4,
|
|
17781
|
-
},
|
|
17782
18015
|
{
|
|
17783
18016
|
name: 'target_system',
|
|
17784
18017
|
type: 'uint8_t',
|
|
@@ -17791,6 +18024,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
17791
18024
|
name: 'cmd_id',
|
|
17792
18025
|
type: 'uint8_t',
|
|
17793
18026
|
},
|
|
18027
|
+
{
|
|
18028
|
+
name: 'value',
|
|
18029
|
+
type: 'uint8_t',
|
|
18030
|
+
arrayLength: 4,
|
|
18031
|
+
},
|
|
17794
18032
|
]
|
|
17795
18033
|
},
|
|
17796
18034
|
{
|
|
@@ -17825,11 +18063,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
17825
18063
|
id: 11000,
|
|
17826
18064
|
name: 'DEVICE_OP_READ',
|
|
17827
18065
|
fields: [
|
|
17828
|
-
{
|
|
17829
|
-
name: 'busname',
|
|
17830
|
-
type: 'char',
|
|
17831
|
-
arrayLength: 40,
|
|
17832
|
-
},
|
|
17833
18066
|
{
|
|
17834
18067
|
name: 'request_id',
|
|
17835
18068
|
type: 'uint32_t',
|
|
@@ -17854,6 +18087,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
17854
18087
|
name: 'address',
|
|
17855
18088
|
type: 'uint8_t',
|
|
17856
18089
|
},
|
|
18090
|
+
{
|
|
18091
|
+
name: 'busname',
|
|
18092
|
+
type: 'char',
|
|
18093
|
+
arrayLength: 40,
|
|
18094
|
+
},
|
|
17857
18095
|
{
|
|
17858
18096
|
name: 'regstart',
|
|
17859
18097
|
type: 'uint8_t',
|
|
@@ -17873,11 +18111,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
17873
18111
|
id: 11001,
|
|
17874
18112
|
name: 'DEVICE_OP_READ_REPLY',
|
|
17875
18113
|
fields: [
|
|
17876
|
-
{
|
|
17877
|
-
name: 'data',
|
|
17878
|
-
type: 'uint8_t',
|
|
17879
|
-
arrayLength: 128,
|
|
17880
|
-
},
|
|
17881
18114
|
{
|
|
17882
18115
|
name: 'request_id',
|
|
17883
18116
|
type: 'uint32_t',
|
|
@@ -17894,6 +18127,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
17894
18127
|
name: 'count',
|
|
17895
18128
|
type: 'uint8_t',
|
|
17896
18129
|
},
|
|
18130
|
+
{
|
|
18131
|
+
name: 'data',
|
|
18132
|
+
type: 'uint8_t',
|
|
18133
|
+
arrayLength: 128,
|
|
18134
|
+
},
|
|
17897
18135
|
{
|
|
17898
18136
|
name: 'bank',
|
|
17899
18137
|
type: 'uint8_t',
|
|
@@ -17905,16 +18143,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
17905
18143
|
id: 11002,
|
|
17906
18144
|
name: 'DEVICE_OP_WRITE',
|
|
17907
18145
|
fields: [
|
|
17908
|
-
{
|
|
17909
|
-
name: 'data',
|
|
17910
|
-
type: 'uint8_t',
|
|
17911
|
-
arrayLength: 128,
|
|
17912
|
-
},
|
|
17913
|
-
{
|
|
17914
|
-
name: 'busname',
|
|
17915
|
-
type: 'char',
|
|
17916
|
-
arrayLength: 40,
|
|
17917
|
-
},
|
|
17918
18146
|
{
|
|
17919
18147
|
name: 'request_id',
|
|
17920
18148
|
type: 'uint32_t',
|
|
@@ -17939,6 +18167,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
17939
18167
|
name: 'address',
|
|
17940
18168
|
type: 'uint8_t',
|
|
17941
18169
|
},
|
|
18170
|
+
{
|
|
18171
|
+
name: 'busname',
|
|
18172
|
+
type: 'char',
|
|
18173
|
+
arrayLength: 40,
|
|
18174
|
+
},
|
|
17942
18175
|
{
|
|
17943
18176
|
name: 'regstart',
|
|
17944
18177
|
type: 'uint8_t',
|
|
@@ -17947,6 +18180,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
17947
18180
|
name: 'count',
|
|
17948
18181
|
type: 'uint8_t',
|
|
17949
18182
|
},
|
|
18183
|
+
{
|
|
18184
|
+
name: 'data',
|
|
18185
|
+
type: 'uint8_t',
|
|
18186
|
+
arrayLength: 128,
|
|
18187
|
+
},
|
|
17950
18188
|
{
|
|
17951
18189
|
name: 'bank',
|
|
17952
18190
|
type: 'uint8_t',
|
|
@@ -17972,11 +18210,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
17972
18210
|
id: 11004,
|
|
17973
18211
|
name: 'SECURE_COMMAND',
|
|
17974
18212
|
fields: [
|
|
17975
|
-
{
|
|
17976
|
-
name: 'data',
|
|
17977
|
-
type: 'uint8_t',
|
|
17978
|
-
arrayLength: 220,
|
|
17979
|
-
},
|
|
17980
18213
|
{
|
|
17981
18214
|
name: 'sequence',
|
|
17982
18215
|
type: 'uint32_t',
|
|
@@ -18001,17 +18234,17 @@ const MESSAGE_DEFINITIONS = [
|
|
|
18001
18234
|
name: 'sig_length',
|
|
18002
18235
|
type: 'uint8_t',
|
|
18003
18236
|
},
|
|
18237
|
+
{
|
|
18238
|
+
name: 'data',
|
|
18239
|
+
type: 'uint8_t',
|
|
18240
|
+
arrayLength: 220,
|
|
18241
|
+
},
|
|
18004
18242
|
]
|
|
18005
18243
|
},
|
|
18006
18244
|
{
|
|
18007
18245
|
id: 11005,
|
|
18008
18246
|
name: 'SECURE_COMMAND_REPLY',
|
|
18009
18247
|
fields: [
|
|
18010
|
-
{
|
|
18011
|
-
name: 'data',
|
|
18012
|
-
type: 'uint8_t',
|
|
18013
|
-
arrayLength: 220,
|
|
18014
|
-
},
|
|
18015
18248
|
{
|
|
18016
18249
|
name: 'sequence',
|
|
18017
18250
|
type: 'uint32_t',
|
|
@@ -18028,6 +18261,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
18028
18261
|
name: 'data_length',
|
|
18029
18262
|
type: 'uint8_t',
|
|
18030
18263
|
},
|
|
18264
|
+
{
|
|
18265
|
+
name: 'data',
|
|
18266
|
+
type: 'uint8_t',
|
|
18267
|
+
arrayLength: 220,
|
|
18268
|
+
},
|
|
18031
18269
|
]
|
|
18032
18270
|
},
|
|
18033
18271
|
{
|
|
@@ -18092,6 +18330,14 @@ const MESSAGE_DEFINITIONS = [
|
|
|
18092
18330
|
id: 11011,
|
|
18093
18331
|
name: 'VISION_POSITION_DELTA',
|
|
18094
18332
|
fields: [
|
|
18333
|
+
{
|
|
18334
|
+
name: 'time_usec',
|
|
18335
|
+
type: 'uint64_t',
|
|
18336
|
+
},
|
|
18337
|
+
{
|
|
18338
|
+
name: 'time_delta_usec',
|
|
18339
|
+
type: 'uint64_t',
|
|
18340
|
+
},
|
|
18095
18341
|
{
|
|
18096
18342
|
name: 'angle_delta',
|
|
18097
18343
|
type: 'float',
|
|
@@ -18102,14 +18348,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
18102
18348
|
type: 'float',
|
|
18103
18349
|
arrayLength: 3,
|
|
18104
18350
|
},
|
|
18105
|
-
{
|
|
18106
|
-
name: 'time_usec',
|
|
18107
|
-
type: 'uint64_t',
|
|
18108
|
-
},
|
|
18109
|
-
{
|
|
18110
|
-
name: 'time_delta_usec',
|
|
18111
|
-
type: 'uint64_t',
|
|
18112
|
-
},
|
|
18113
18351
|
{
|
|
18114
18352
|
name: 'confidence',
|
|
18115
18353
|
type: 'float',
|
|
@@ -18246,11 +18484,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
18246
18484
|
id: 11033,
|
|
18247
18485
|
name: 'OSD_PARAM_CONFIG',
|
|
18248
18486
|
fields: [
|
|
18249
|
-
{
|
|
18250
|
-
name: 'param_id',
|
|
18251
|
-
type: 'char',
|
|
18252
|
-
arrayLength: 16,
|
|
18253
|
-
},
|
|
18254
18487
|
{
|
|
18255
18488
|
name: 'request_id',
|
|
18256
18489
|
type: 'uint32_t',
|
|
@@ -18283,6 +18516,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
18283
18516
|
name: 'osd_index',
|
|
18284
18517
|
type: 'uint8_t',
|
|
18285
18518
|
},
|
|
18519
|
+
{
|
|
18520
|
+
name: 'param_id',
|
|
18521
|
+
type: 'char',
|
|
18522
|
+
arrayLength: 16,
|
|
18523
|
+
},
|
|
18286
18524
|
{
|
|
18287
18525
|
name: 'config_type',
|
|
18288
18526
|
type: 'uint8_t',
|
|
@@ -18333,11 +18571,6 @@ const MESSAGE_DEFINITIONS = [
|
|
|
18333
18571
|
id: 11036,
|
|
18334
18572
|
name: 'OSD_PARAM_SHOW_CONFIG_REPLY',
|
|
18335
18573
|
fields: [
|
|
18336
|
-
{
|
|
18337
|
-
name: 'param_id',
|
|
18338
|
-
type: 'char',
|
|
18339
|
-
arrayLength: 16,
|
|
18340
|
-
},
|
|
18341
18574
|
{
|
|
18342
18575
|
name: 'request_id',
|
|
18343
18576
|
type: 'uint32_t',
|
|
@@ -18358,6 +18591,11 @@ const MESSAGE_DEFINITIONS = [
|
|
|
18358
18591
|
name: 'result',
|
|
18359
18592
|
type: 'uint8_t',
|
|
18360
18593
|
},
|
|
18594
|
+
{
|
|
18595
|
+
name: 'param_id',
|
|
18596
|
+
type: 'char',
|
|
18597
|
+
arrayLength: 16,
|
|
18598
|
+
},
|
|
18361
18599
|
{
|
|
18362
18600
|
name: 'config_type',
|
|
18363
18601
|
type: 'uint8_t',
|
|
@@ -18662,6 +18900,26 @@ const MESSAGE_DEFINITIONS = [
|
|
|
18662
18900
|
},
|
|
18663
18901
|
]
|
|
18664
18902
|
},
|
|
18903
|
+
{
|
|
18904
|
+
id: 11060,
|
|
18905
|
+
name: 'NAMED_VALUE_STRING',
|
|
18906
|
+
fields: [
|
|
18907
|
+
{
|
|
18908
|
+
name: 'time_boot_ms',
|
|
18909
|
+
type: 'uint32_t',
|
|
18910
|
+
},
|
|
18911
|
+
{
|
|
18912
|
+
name: 'name',
|
|
18913
|
+
type: 'char',
|
|
18914
|
+
arrayLength: 10,
|
|
18915
|
+
},
|
|
18916
|
+
{
|
|
18917
|
+
name: 'value',
|
|
18918
|
+
type: 'char',
|
|
18919
|
+
arrayLength: 64,
|
|
18920
|
+
},
|
|
18921
|
+
]
|
|
18922
|
+
},
|
|
18665
18923
|
];
|
|
18666
18924
|
class ArdupilotmegaParser extends DialectParser {
|
|
18667
18925
|
constructor() {
|
|
@@ -18719,5 +18977,5 @@ class ArdupilotmegaSerializer {
|
|
|
18719
18977
|
}
|
|
18720
18978
|
}
|
|
18721
18979
|
|
|
18722
|
-
export { ACCELCAL_VEHICLE_POSEnum, ACTUATOR_CONFIGURATIONEnum, ACTUATOR_OUTPUT_FUNCTIONEnum, ADSB_ALTITUDE_TYPEEnum, ADSB_EMITTER_TYPEEnum, ADSB_FLAGSEnum, AIRLINK_AUTH_RESPONSE_TYPEEnum, AIS_FLAGSEnum, AIS_NAV_STATUSEnum, AIS_TYPEEnum, ATTITUDE_TARGET_TYPEMASKEnum, AUTOTUNE_AXISEnum, ArdupilotmegaParser, ArdupilotmegaSerializer, CAMERA_CAP_FLAGSEnum, CAMERA_FEEDBACK_FLAGSEnum, CAMERA_MODEEnum, CAMERA_SOURCEEnum, CAMERA_STATUS_TYPESEnum, 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, COPTER_MODEEnum, DEEPSTALL_STAGEEnum, DEVICE_OP_BUSTYPEEnum, EKF_STATUS_FLAGSEnum, ESC_CONNECTION_TYPEEnum, ESC_FAILURE_FLAGSEnum, ESTIMATOR_STATUS_FLAGSEnum, FAILURE_TYPEEnum, FAILURE_UNITEnum, FENCE_BREACHEnum, FENCE_MITIGATEEnum, FENCE_TYPEEnum, FIRMWARE_VERSION_TYPEEnum, GIMBAL_AXISEnum, GIMBAL_AXIS_CALIBRATION_REQUIREDEnum, GIMBAL_AXIS_CALIBRATION_STATUSEnum, GIMBAL_DEVICE_CAP_FLAGSEnum, GIMBAL_DEVICE_ERROR_FLAGSEnum, GIMBAL_DEVICE_FLAGSEnum, GIMBAL_MANAGER_CAP_FLAGSEnum, GIMBAL_MANAGER_FLAGSEnum, GOPRO_BURST_RATEEnum, GOPRO_CAPTURE_MODEEnum, GOPRO_CHARGINGEnum, GOPRO_COMMANDEnum, GOPRO_FIELD_OF_VIEWEnum, GOPRO_FRAME_RATEEnum, GOPRO_HEARTBEAT_FLAGSEnum, GOPRO_HEARTBEAT_STATUSEnum, GOPRO_MODELEnum, GOPRO_PHOTO_RESOLUTIONEnum, GOPRO_PROTUNE_COLOUREnum, GOPRO_PROTUNE_EXPOSUREEnum, GOPRO_PROTUNE_GAINEnum, GOPRO_PROTUNE_SHARPNESSEnum, GOPRO_PROTUNE_WHITE_BALANCEEnum, GOPRO_REQUEST_STATUSEnum, GOPRO_RESOLUTIONEnum, GOPRO_VIDEO_SETTINGS_FLAGSEnum, GPS_FIX_TYPEEnum, GPS_INPUT_IGNORE_FLAGSEnum, GRIPPER_ACTIONSEnum, HEADING_TYPEEnum, HIGHRES_IMU_UPDATED_FLAGSEnum, HIL_ACTUATOR_CONTROLS_FLAGSEnum, HIL_SENSOR_UPDATED_FLAGSEnum, HL_FAILURE_FLAGEnum, ICAROUS_FMS_STATEEnum, ICAROUS_TRACK_BAND_TYPESEnum, ILLUMINATOR_ERROR_FLAGSEnum, ILLUMINATOR_MODEEnum, LANDING_TARGET_TYPEEnum, LED_CONTROL_PATTERNEnum, LIMITS_STATEEnum, LIMIT_MODULEEnum, 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_CMD_DO_AUX_FUNCTION_SWITCH_LEVELEnum, 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_GIMBALEnum, 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_REMOTE_LOG_DATA_BLOCK_COMMANDSEnum, MAV_REMOTE_LOG_DATA_BLOCK_STATUSESEnum, 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, OSD_PARAM_CONFIG_ERROREnum, OSD_PARAM_CONFIG_TYPEEnum, PARACHUTE_ACTIONEnum, PARAM_ACKEnum, PID_TUNING_AXISEnum, PLANE_MODEEnum, POSITION_TARGET_TYPEMASKEnum, PRECISION_LAND_MODEEnum, PREFLIGHT_STORAGE_MISSION_ACTIONEnum, PREFLIGHT_STORAGE_PARAMETER_ACTIONEnum, RALLY_FLAGSEnum, RC_SUB_TYPEEnum, RC_TYPEEnum, REBOOT_SHUTDOWN_CONDITIONSEnum, ROVER_MODEEnum, RTK_BASELINE_COORDINATE_SYSTEMEnum, SAFETY_SWITCH_STATEEnum, SCRIPTING_CMDEnum, SECURE_COMMAND_OPEnum, SERIAL_CONTROL_DEVEnum, SERIAL_CONTROL_FLAGEnum, SET_FOCUS_TYPEEnum, SPEED_TYPEEnum, STORAGE_STATUSEnum, STORAGE_TYPEEnum, STORAGE_USAGE_FLAGEnum, SUB_MODEEnum, TRACKER_MODEEnum, TUNE_FORMATEnum, UAVCAN_NODE_HEALTHEnum, UAVCAN_NODE_MODEEnum, UAVIONIX_ADSB_EMERGENCY_STATUSEnum, UAVIONIX_ADSB_OUT_CFG_AIRCRAFT_SIZEEnum, UAVIONIX_ADSB_OUT_CFG_GPS_OFFSET_LATEnum, UAVIONIX_ADSB_OUT_CFG_GPS_OFFSET_LONEnum, UAVIONIX_ADSB_OUT_CONTROL_STATEEnum, UAVIONIX_ADSB_OUT_DYNAMIC_GPS_FIXEnum, UAVIONIX_ADSB_OUT_DYNAMIC_STATEEnum, UAVIONIX_ADSB_OUT_RF_SELECTEnum, UAVIONIX_ADSB_OUT_STATUS_FAULTEnum, UAVIONIX_ADSB_OUT_STATUS_NIC_NACPEnum, UAVIONIX_ADSB_OUT_STATUS_STATEEnum, UAVIONIX_ADSB_RF_HEALTHEnum, UAVIONIX_ADSB_XBITEnum, 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, isAdapTuning, isAdsbVehicle, isAhrs, isAhrs2, isAhrs3, isAirlinkAuth, isAirlinkAuthResponse, isAirspeedAutocal, isAisVessel, isAltitude, isAoaSsa, isApAdc, isAttPosMocap, isAttitude, isAttitudeQuaternion, isAttitudeQuaternionCov, isAttitudeTarget, isAuthKey, isAutopilotStateForGimbalDevice, isAutopilotVersion, isAutopilotVersionRequest, isAvailableModes, isAvailableModesMonitor, isBattery2, isBatteryInfo, isBatteryStatus, isButtonChange, isCameraCaptureStatus, isCameraFeedback, isCameraFovStatus, isCameraImageCaptured, isCameraInformation, isCameraSettings, isCameraStatus, isCameraThermalRange, isCameraTrackingGeoStatus, isCameraTrackingImageStatus, isCameraTrigger, isCanFilterModify, isCanFrame, isCanfdFrame, isCellularConfig, isCellularStatus, isChangeOperatorControl, isChangeOperatorControlAck, isCollision, isCommandAck, isCommandCancel, isCommandInt, isCommandLong, isCompassmotStatus, isComponentInformation, isComponentInformationBasic, isComponentMetadata, isControlSystemState, isCubepilotFirmwareUpdateResp, isCubepilotFirmwareUpdateStart, isCubepilotRawRc, isCurrentEventSequence, isCurrentMode, isData16, isData32, isData64, isData96, isDataStream, isDataTransmissionHandshake, isDebug, isDebugFloatArray, isDebugVect, isDeepstall, isDeviceOpRead, isDeviceOpReadReply, isDeviceOpWrite, isDeviceOpWriteReply, isDigicamConfigure, isDigicamControl, isDistanceSensor, isEfiStatus, isEkfStatusReport, isEncapsulatedData, isEscInfo, isEscStatus, isEscTelemetry13To16, isEscTelemetry17To20, isEscTelemetry1To4, isEscTelemetry21To24, isEscTelemetry25To28, isEscTelemetry29To32, isEscTelemetry5To8, isEscTelemetry9To12, isEstimatorStatus, isEvent, isExtendedSysState, isFenceFetchPoint, isFencePoint, isFenceStatus, isFileTransferProtocol, isFlightInformation, isFollowTarget, isFuelStatus, isGeneratorStatus, isGimbalControl, isGimbalDeviceAttitudeStatus, isGimbalDeviceInformation, isGimbalDeviceSetAttitude, isGimbalManagerInformation, isGimbalManagerSetAttitude, isGimbalManagerSetManualControl, isGimbalManagerSetPitchyaw, isGimbalManagerStatus, isGimbalReport, isGimbalTorqueCmdReport, isGlobalPositionInt, isGlobalPositionIntCov, isGlobalVisionPositionEstimate, isGoproGetRequest, isGoproGetResponse, isGoproHeartbeat, isGoproSetRequest, isGoproSetResponse, isGps2Raw, isGps2Rtk, isGpsGlobalOrigin, isGpsInjectData, isGpsInput, isGpsRawInt, isGpsRtcmData, isGpsRtk, isGpsStatus, isHeartbeat, isHerelinkTelem, isHerelinkVideoStreamInformation, isHighLatency, isHighLatency2, isHighresImu, isHilActuatorControls, isHilControls, isHilGps, isHilOpticalFlow, isHilRcInputsRaw, isHilSensor, isHilState, isHilStateQuaternion, isHomePosition, isHwstatus, isHygrometerSensor, isIcarousHeartbeat, isIcarousKinematicBands, isIlluminatorStatus, isIsbdLinkStatus, isLandingTarget, isLedControl, isLimitsStatus, isLinkNodeStatus, isLocalPositionNed, isLocalPositionNedCov, isLocalPositionNedSystemGlobalOffset, isLogData, isLogEntry, isLogErase, isLogRequestData, isLogRequestEnd, isLogRequestList, isLoggingAck, isLoggingData, isLoggingDataAcked, isLoweheiserGovEfi, isMagCalProgress, isMagCalReport, isManualControl, isManualSetpoint, isMcuStatus, isMeminfo, isMemoryVect, isMessageInterval, isMissionAck, isMissionClearAll, isMissionCount, isMissionCurrent, isMissionItem, isMissionItemInt, isMissionItemReached, isMissionRequest, isMissionRequestInt, isMissionRequestList, isMissionRequestPartialList, isMissionSetCurrent, isMissionWritePartialList, isMountConfigure, isMountControl, isMountOrientation, isMountStatus, isNamedValueFloat, isNamedValueInt, isNavControllerOutput, isObstacleDistance, isObstacleDistance3d, isOdometry, isOnboardComputerStatus, isOpenDroneIdArmStatus, isOpenDroneIdAuthentication, isOpenDroneIdBasicId, isOpenDroneIdLocation, isOpenDroneIdMessagePack, isOpenDroneIdOperatorId, isOpenDroneIdSelfId, isOpenDroneIdSystem, isOpenDroneIdSystemUpdate, isOpticalFlow, isOpticalFlowRad, isOrbitExecutionStatus, isOsdParamConfig, isOsdParamConfigReply, isOsdParamShowConfig, isOsdParamShowConfigReply, isParamExtAck, isParamExtRequestList, isParamExtRequestRead, isParamExtSet, isParamExtValue, isParamMapRc, isParamRequestList, isParamRequestRead, isParamSet, isParamValue, isPidTuning, isPing, isPlayTune, isPlayTuneV2, isPositionTargetGlobalInt, isPositionTargetLocalNed, isPowerStatus, isProtocolVersion, isRadio, isRadioStatus, isRallyFetchPoint, isRallyPoint, isRangefinder, isRawImu, isRawPressure, isRawRpm, isRcChannels, isRcChannelsOverride, isRcChannelsRaw, isRcChannelsScaled, isRemoteLogBlockStatus, isRemoteLogDataBlock, isRequestDataStream, isRequestEvent, isResourceRequest, isResponseEventError, isRpm, isSafetyAllowedArea, isSafetySetAllowedArea, isScaledImu, isScaledImu2, isScaledImu3, isScaledPressure, isScaledPressure2, isScaledPressure3, isSecureCommand, isSecureCommandReply, isSensorOffsets, isSerialControl, isServoOutputRaw, isSetActuatorControlTarget, isSetAttitudeTarget, isSetGpsGlobalOrigin, isSetHomePosition, isSetMagOffsets, isSetMode, isSetPositionTargetGlobalInt, isSetPositionTargetLocalNed, isSetupSigning, isSimState, isSimstate, isSmartBatteryInfo, isStatustext, isStorageInformation, isSupportedTunes, isSysStatus, isSystemTime, isTerrainCheck, isTerrainData, isTerrainReport, isTerrainRequest, isTimeEstimateToTarget, isTimesync, isTrajectoryRepresentationBezier, isTrajectoryRepresentationWaypoints, isTunnel, isUavcanNodeInfo, isUavcanNodeStatus, isUavionixAdsbGet, isUavionixAdsbOutCfg, isUavionixAdsbOutCfgFlightid, isUavionixAdsbOutCfgRegistration, isUavionixAdsbOutControl, isUavionixAdsbOutDynamic, isUavionixAdsbOutStatus, isUavionixAdsbTransceiverHealthReport, isUtmGlobalPosition, isV2Extension, isVfrHud, isVibration, isViconPositionEstimate, isVideoStreamInformation, isVideoStreamStatus, isVisionPositionDelta, isVisionPositionEstimate, isVisionSpeedEstimate, isWaterDepth, isWheelDistance, isWifiConfigAp, isWinchStatus, isWind, isWindCov };
|
|
18980
|
+
export { ACCELCAL_VEHICLE_POSEnum, ACTUATOR_CONFIGURATIONEnum, ACTUATOR_OUTPUT_FUNCTIONEnum, ADSB_ALTITUDE_TYPEEnum, ADSB_EMITTER_TYPEEnum, ADSB_FLAGSEnum, AIRLINK_AUTH_RESPONSE_TYPEEnum, AIRSPEED_SENSOR_FLAGSEnum, AIS_FLAGSEnum, AIS_NAV_STATUSEnum, AIS_TYPEEnum, ATTITUDE_TARGET_TYPEMASKEnum, AUTOTUNE_AXISEnum, ArdupilotmegaParser, ArdupilotmegaSerializer, CAMERA_CAP_FLAGSEnum, CAMERA_FEEDBACK_FLAGSEnum, CAMERA_MODEEnum, CAMERA_SOURCEEnum, CAMERA_STATUS_TYPESEnum, 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, COPTER_MODEEnum, DEEPSTALL_STAGEEnum, DEVICE_OP_BUSTYPEEnum, EKF_STATUS_FLAGSEnum, ESC_CONNECTION_TYPEEnum, ESC_FAILURE_FLAGSEnum, ESTIMATOR_STATUS_FLAGSEnum, FAILURE_TYPEEnum, FAILURE_UNITEnum, FENCE_BREACHEnum, FENCE_MITIGATEEnum, FENCE_TYPEEnum, FIRMWARE_VERSION_TYPEEnum, GIMBAL_AXISEnum, GIMBAL_AXIS_CALIBRATION_REQUIREDEnum, GIMBAL_AXIS_CALIBRATION_STATUSEnum, GIMBAL_DEVICE_CAP_FLAGSEnum, GIMBAL_DEVICE_ERROR_FLAGSEnum, GIMBAL_DEVICE_FLAGSEnum, GIMBAL_MANAGER_CAP_FLAGSEnum, GIMBAL_MANAGER_FLAGSEnum, GOPRO_BURST_RATEEnum, GOPRO_CAPTURE_MODEEnum, GOPRO_CHARGINGEnum, GOPRO_COMMANDEnum, GOPRO_FIELD_OF_VIEWEnum, GOPRO_FRAME_RATEEnum, GOPRO_HEARTBEAT_FLAGSEnum, GOPRO_HEARTBEAT_STATUSEnum, GOPRO_MODELEnum, GOPRO_PHOTO_RESOLUTIONEnum, GOPRO_PROTUNE_COLOUREnum, GOPRO_PROTUNE_EXPOSUREEnum, GOPRO_PROTUNE_GAINEnum, GOPRO_PROTUNE_SHARPNESSEnum, GOPRO_PROTUNE_WHITE_BALANCEEnum, GOPRO_REQUEST_STATUSEnum, GOPRO_RESOLUTIONEnum, GOPRO_VIDEO_SETTINGS_FLAGSEnum, GPS_FIX_TYPEEnum, GPS_INPUT_IGNORE_FLAGSEnum, GRIPPER_ACTIONSEnum, HEADING_TYPEEnum, HIGHRES_IMU_UPDATED_FLAGSEnum, HIL_ACTUATOR_CONTROLS_FLAGSEnum, HIL_SENSOR_UPDATED_FLAGSEnum, HL_FAILURE_FLAGEnum, ICAROUS_FMS_STATEEnum, ICAROUS_TRACK_BAND_TYPESEnum, ILLUMINATOR_ERROR_FLAGSEnum, ILLUMINATOR_MODEEnum, LANDING_TARGET_TYPEEnum, LED_CONTROL_PATTERNEnum, LIMITS_STATEEnum, LIMIT_MODULEEnum, 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_CMD_DO_AUX_FUNCTION_SWITCH_LEVELEnum, 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_GIMBALEnum, 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_REMOTE_LOG_DATA_BLOCK_COMMANDSEnum, MAV_REMOTE_LOG_DATA_BLOCK_STATUSESEnum, 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, OSD_PARAM_CONFIG_ERROREnum, OSD_PARAM_CONFIG_TYPEEnum, PARACHUTE_ACTIONEnum, PARAM_ACKEnum, PID_TUNING_AXISEnum, PLANE_MODEEnum, POSITION_TARGET_TYPEMASKEnum, PRECISION_LAND_MODEEnum, PREFLIGHT_STORAGE_MISSION_ACTIONEnum, PREFLIGHT_STORAGE_PARAMETER_ACTIONEnum, RALLY_FLAGSEnum, RC_SUB_TYPEEnum, RC_TYPEEnum, REBOOT_SHUTDOWN_ACTIONEnum, REBOOT_SHUTDOWN_CONDITIONSEnum, ROVER_MODEEnum, RTK_BASELINE_COORDINATE_SYSTEMEnum, SAFETY_SWITCH_STATEEnum, SCRIPTING_CMDEnum, SECURE_COMMAND_OPEnum, SERIAL_CONTROL_DEVEnum, SERIAL_CONTROL_FLAGEnum, SET_FOCUS_TYPEEnum, SPEED_TYPEEnum, STORAGE_STATUSEnum, STORAGE_TYPEEnum, STORAGE_USAGE_FLAGEnum, SUB_MODEEnum, TRACKER_MODEEnum, TUNE_FORMATEnum, UAVCAN_NODE_HEALTHEnum, UAVCAN_NODE_MODEEnum, UAVIONIX_ADSB_EMERGENCY_STATUSEnum, UAVIONIX_ADSB_OUT_CFG_AIRCRAFT_SIZEEnum, UAVIONIX_ADSB_OUT_CFG_GPS_OFFSET_LATEnum, UAVIONIX_ADSB_OUT_CFG_GPS_OFFSET_LONEnum, UAVIONIX_ADSB_OUT_CONTROL_STATEEnum, UAVIONIX_ADSB_OUT_DYNAMIC_GPS_FIXEnum, UAVIONIX_ADSB_OUT_DYNAMIC_STATEEnum, UAVIONIX_ADSB_OUT_RF_SELECTEnum, UAVIONIX_ADSB_OUT_STATUS_FAULTEnum, UAVIONIX_ADSB_OUT_STATUS_NIC_NACPEnum, UAVIONIX_ADSB_OUT_STATUS_STATEEnum, UAVIONIX_ADSB_RF_HEALTHEnum, UAVIONIX_ADSB_XBITEnum, 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, isAdapTuning, isAdsbVehicle, isAhrs, isAhrs2, isAhrs3, isAirlinkAuth, isAirlinkAuthResponse, isAirspeed, isAirspeedAutocal, isAisVessel, isAltitude, isAoaSsa, isApAdc, isAttPosMocap, isAttitude, isAttitudeQuaternion, isAttitudeQuaternionCov, isAttitudeTarget, isAuthKey, isAutopilotStateForGimbalDevice, isAutopilotVersion, isAutopilotVersionRequest, isAvailableModes, isAvailableModesMonitor, isBattery2, isBatteryInfo, isBatteryStatus, isButtonChange, isCameraCaptureStatus, isCameraFeedback, isCameraFovStatus, isCameraImageCaptured, isCameraInformation, isCameraSettings, isCameraStatus, isCameraThermalRange, isCameraTrackingGeoStatus, isCameraTrackingImageStatus, isCameraTrigger, isCanFilterModify, isCanFrame, isCanfdFrame, isCellularConfig, isCellularStatus, isChangeOperatorControl, isChangeOperatorControlAck, isCollision, isCommandAck, isCommandCancel, isCommandInt, isCommandLong, isCompassmotStatus, isComponentInformation, isComponentInformationBasic, isComponentMetadata, isControlSystemState, isCubepilotFirmwareUpdateResp, isCubepilotFirmwareUpdateStart, isCubepilotRawRc, isCurrentEventSequence, isCurrentMode, isData16, isData32, isData64, isData96, isDataStream, isDataTransmissionHandshake, isDebug, isDebugFloatArray, isDebugVect, isDeepstall, isDeviceOpRead, isDeviceOpReadReply, isDeviceOpWrite, isDeviceOpWriteReply, isDigicamConfigure, isDigicamControl, isDistanceSensor, isEfiStatus, isEkfStatusReport, isEncapsulatedData, isEscInfo, isEscStatus, isEscTelemetry13To16, isEscTelemetry17To20, isEscTelemetry1To4, isEscTelemetry21To24, isEscTelemetry25To28, isEscTelemetry29To32, isEscTelemetry5To8, isEscTelemetry9To12, isEstimatorStatus, isEvent, isExtendedSysState, isFenceFetchPoint, isFencePoint, isFenceStatus, isFigureEightExecutionStatus, isFileTransferProtocol, isFlightInformation, isFollowTarget, isFuelStatus, isGeneratorStatus, isGimbalControl, isGimbalDeviceAttitudeStatus, isGimbalDeviceInformation, isGimbalDeviceSetAttitude, isGimbalManagerInformation, isGimbalManagerSetAttitude, isGimbalManagerSetManualControl, isGimbalManagerSetPitchyaw, isGimbalManagerStatus, isGimbalReport, isGimbalTorqueCmdReport, isGlobalPositionInt, isGlobalPositionIntCov, isGlobalVisionPositionEstimate, isGoproGetRequest, isGoproGetResponse, isGoproHeartbeat, isGoproSetRequest, isGoproSetResponse, isGps2Raw, isGps2Rtk, isGpsGlobalOrigin, isGpsInjectData, isGpsInput, isGpsRawInt, isGpsRtcmData, isGpsRtk, isGpsStatus, isHeartbeat, isHerelinkTelem, isHerelinkVideoStreamInformation, isHighLatency, isHighLatency2, isHighresImu, isHilActuatorControls, isHilControls, isHilGps, isHilOpticalFlow, isHilRcInputsRaw, isHilSensor, isHilState, isHilStateQuaternion, isHomePosition, isHwstatus, isHygrometerSensor, isIcarousHeartbeat, isIcarousKinematicBands, isIlluminatorStatus, isIsbdLinkStatus, isLandingTarget, isLedControl, isLimitsStatus, isLinkNodeStatus, isLocalPositionNed, isLocalPositionNedCov, isLocalPositionNedSystemGlobalOffset, isLogData, isLogEntry, isLogErase, isLogRequestData, isLogRequestEnd, isLogRequestList, isLoggingAck, isLoggingData, isLoggingDataAcked, isLoweheiserGovEfi, isMagCalProgress, isMagCalReport, isManualControl, isManualSetpoint, isMcuStatus, isMeminfo, isMemoryVect, isMessageInterval, isMissionAck, isMissionClearAll, isMissionCount, isMissionCurrent, isMissionItem, isMissionItemInt, isMissionItemReached, isMissionRequest, isMissionRequestInt, isMissionRequestList, isMissionRequestPartialList, isMissionSetCurrent, isMissionWritePartialList, isMountConfigure, isMountControl, isMountOrientation, isMountStatus, isNamedValueFloat, isNamedValueInt, isNamedValueString, isNavControllerOutput, isObstacleDistance, isObstacleDistance3d, isOdometry, isOnboardComputerStatus, isOpenDroneIdArmStatus, isOpenDroneIdAuthentication, isOpenDroneIdBasicId, isOpenDroneIdLocation, isOpenDroneIdMessagePack, isOpenDroneIdOperatorId, isOpenDroneIdSelfId, isOpenDroneIdSystem, isOpenDroneIdSystemUpdate, isOpticalFlow, isOpticalFlowRad, isOrbitExecutionStatus, isOsdParamConfig, isOsdParamConfigReply, isOsdParamShowConfig, isOsdParamShowConfigReply, isParamError, isParamExtAck, isParamExtRequestList, isParamExtRequestRead, isParamExtSet, isParamExtValue, isParamMapRc, isParamRequestList, isParamRequestRead, isParamSet, isParamValue, isPidTuning, isPing, isPlayTune, isPlayTuneV2, isPositionTargetGlobalInt, isPositionTargetLocalNed, isPowerStatus, isProtocolVersion, isRadio, isRadioStatus, isRallyFetchPoint, isRallyPoint, isRangefinder, isRawImu, isRawPressure, isRawRpm, isRcChannels, isRcChannelsOverride, isRcChannelsRaw, isRcChannelsScaled, isRemoteLogBlockStatus, isRemoteLogDataBlock, isRequestDataStream, isRequestEvent, isResourceRequest, isResponseEventError, isRpm, isSafetyAllowedArea, isSafetySetAllowedArea, isScaledImu, isScaledImu2, isScaledImu3, isScaledPressure, isScaledPressure2, isScaledPressure3, isSecureCommand, isSecureCommandReply, isSensorOffsets, isSerialControl, isServoOutputRaw, isSetActuatorControlTarget, isSetAttitudeTarget, isSetGpsGlobalOrigin, isSetHomePosition, isSetMagOffsets, isSetMode, isSetPositionTargetGlobalInt, isSetPositionTargetLocalNed, isSetupSigning, isSimState, isSimstate, isSmartBatteryInfo, isStatustext, isStorageInformation, isSupportedTunes, isSysStatus, isSystemTime, isTerrainCheck, isTerrainData, isTerrainReport, isTerrainRequest, isTimeEstimateToTarget, isTimesync, isTrajectoryRepresentationBezier, isTrajectoryRepresentationWaypoints, isTunnel, isUavcanNodeInfo, isUavcanNodeStatus, isUavionixAdsbGet, isUavionixAdsbOutCfg, isUavionixAdsbOutCfgFlightid, isUavionixAdsbOutCfgRegistration, isUavionixAdsbOutControl, isUavionixAdsbOutDynamic, isUavionixAdsbOutStatus, isUavionixAdsbTransceiverHealthReport, isUtmGlobalPosition, isV2Extension, isVfrHud, isVibration, isViconPositionEstimate, isVideoStreamInformation, isVideoStreamStatus, isVisionPositionDelta, isVisionPositionEstimate, isVisionSpeedEstimate, isWaterDepth, isWheelDistance, isWifiConfigAp, isWinchStatus, isWind, isWindCov };
|
|
18723
18981
|
//# sourceMappingURL=index.js.map
|