|
4916 | 4916 | <description>True if the data from this sensor is being actively used by the flight controller for guidance, navigation or control.</description> |
4917 | 4917 | </entry> |
4918 | 4918 | </enum> |
| 4919 | + <enum name="GLOBAL_POSITION_SRC"> |
| 4920 | + <description>Source for GLOBAL_POSITION measurement or estimate.</description> |
| 4921 | + <entry value="0" name="GLOBAL_POSITION_SRC_UNKNOWN"> |
| 4922 | + <description>Source is unknown or not one of the listed types.</description> |
| 4923 | + </entry> |
| 4924 | + <entry value="1" name="GLOBAL_POSITION_SRC_GNSS"> |
| 4925 | + <description>Global Navigation Satellite System (e.g.: GPS, Galileo, Glonass, BeiDou).</description> |
| 4926 | + </entry> |
| 4927 | + <entry value="2" name="GLOBAL_POSITION_SRC_VISION"> |
| 4928 | + <description>Vision system (e.g.: map matching).</description> |
| 4929 | + </entry> |
| 4930 | + <entry value="3" name="GLOBAL_POSITION_SRC_PSEUDOLITES"> |
| 4931 | + <description>A pseudo-satellite system using transceiver beacons to perform GNSS-like positioning.</description> |
| 4932 | + </entry> |
| 4933 | + <entry value="4" name="GLOBAL_POSITION_SRC_TERRAIN"> |
| 4934 | + <description>Terrain referenced navigation.</description> |
| 4935 | + </entry> |
| 4936 | + <entry value="5" name="GLOBAL_POSITION_SRC_MAGNETIC"> |
| 4937 | + <description>Magnetic positioning.</description> |
| 4938 | + </entry> |
| 4939 | + <entry value="6" name="GLOBAL_POSITION_SRC_ESTIMATOR"> |
| 4940 | + <description>Estimated position based on various sensors (eg. a Kalman Filter).</description> |
| 4941 | + </entry> |
| 4942 | + </enum> |
4919 | 4943 | </enums> |
4920 | 4944 | <messages> |
4921 | 4945 | <message id="1" name="SYS_STATUS"> |
|
6967 | 6991 | <field type="float" name="raw_press" units="hPa" invalid="NaN">Raw differential pressure.</field> |
6968 | 6992 | <field type="uint8_t" name="flags" enum="AIRSPEED_SENSOR_FLAGS">Airspeed sensor flags.</field> |
6969 | 6993 | </message> |
| 6994 | + <message id="296" name="GLOBAL_POSITION_SENSOR"> |
| 6995 | + <description>Reports measurement/estimate from a global position sensor. Used as navigation fusion source and optionally displayed in the UI.</description> |
| 6996 | + <field type="uint8_t" name="target_system" default="0">System ID (ID of target system, normally autopilot and ground station).</field> |
| 6997 | + <field type="uint8_t" name="target_component" default="0">Component ID (normally 0 for broadcast).</field> |
| 6998 | + <field type="uint8_t" name="id" instance="true">Sensor ID</field> |
| 6999 | + <field type="uint64_t" name="time_usec" units="us">Timestamp of message transmission (UNIX Epoch time or time since system boot). The receiving end can infer timestamp format (since 1.1.1970 or since system boot) by checking for the magnitude of the number.</field> |
| 7000 | + <field type="uint32_t" name="processing_time" units="us">The time spent in processing the sensor data that is the basis for this position. The recipient can use this to improve time alignment of the data. This is the time between measurement (e.g. camera exposure time) and transmission of this message. Set to NaN if not known.</field> |
| 7001 | + <field type="uint8_t" name="source" enum="GLOBAL_POSITION_SRC">Source of position/estimate (such as GNSS, estimator, etc.)</field> |
| 7002 | + <field type="uint8_t" name="flags" enum="GLOBAL_POSITION_FLAGS">Status flags</field> |
| 7003 | + <field type="int32_t" name="lat" units="degE7" invalid="INT32_MAX">Latitude (WGS84)</field> |
| 7004 | + <field type="int32_t" name="lon" units="degE7" invalid="INT32_MAX">Longitude (WGS84)</field> |
| 7005 | + <field type="float" name="alt_ellipsoid" units="m" invalid="NaN">Altitude (WGS84 elipsoid), preferred if available</field> |
| 7006 | + <field type="float" name="alt" units="m" invalid="NaN">Altitude (MSL - position-system specific value) use if no alt_ellipsoid available</field> |
| 7007 | + <field type="float" name="eph" units="m" invalid="NaN">Standard deviation of horizontal position error</field> |
| 7008 | + <field type="float" name="epv" units="m" invalid="NaN">Standard deviation of vertical position error</field> |
| 7009 | + </message> |
6970 | 7010 | <message id="299" name="WIFI_CONFIG_AP"> |
6971 | 7011 | <description>Configure WiFi AP SSID, password, and mode. This message is re-emitted as an acknowledgement by the AP. The message may also be explicitly requested using MAV_CMD_REQUEST_MESSAGE</description> |
6972 | 7012 | <field type="char[32]" name="ssid">Name of Wi-Fi network (SSID). Blank to leave it unchanged when setting. Current SSID when sent back as a response.</field> |
|
0 commit comments