@@ -83,8 +83,8 @@ for all positional movement commands until it is set to another value.
83
83
.. tip ::
84
84
85
85
You can also set the position by sending the MAVLink commands
86
- `SET_POSITION_TARGET_GLOBAL_INT <https://pixhawk.ethz.ch/mavlink/ #SET_POSITION_TARGET_GLOBAL_INT >`_ or
87
- `SET_POSITION_TARGET_LOCAL_NED <https://pixhawk.ethz.ch/mavlink/ #SET_POSITION_TARGET_LOCAL_NED >`_, specifying
86
+ `SET_POSITION_TARGET_GLOBAL_INT <https://mavlink.io/en/messages/common.html #SET_POSITION_TARGET_GLOBAL_INT >`_ or
87
+ `SET_POSITION_TARGET_LOCAL_NED <https://mavlink.io/en/messages/common.html #SET_POSITION_TARGET_LOCAL_NED >`_, specifying
88
88
a ``type_mask `` bitmask that enables the position parameters. The main difference between these commands is
89
89
that the former allows you to specify the location relative to the "global" frames (like
90
90
``Vehicle.simple_goto() ``), while the later lets you specify the location in NED co-ordinates relative
@@ -175,7 +175,7 @@ When moving the vehicle you can send separate commands to control the yaw (and o
175
175
.. tip ::
176
176
177
177
You can also control the velocity using the
178
- `SET_POSITION_TARGET_GLOBAL_INT <https://pixhawk.ethz.ch/mavlink/ #SET_POSITION_TARGET_GLOBAL_INT >`_
178
+ `SET_POSITION_TARGET_GLOBAL_INT <https://mavlink.io/en/messages/common.html #SET_POSITION_TARGET_GLOBAL_INT >`_
179
179
MAVLink command, as described in :ref: `example_guided_mode_send_global_velocity `.
180
180
181
181
@@ -189,8 +189,8 @@ ArduPilot does not currently support controlling the vehicle by specifying accel
189
189
190
190
.. note ::
191
191
192
- The `SET_POSITION_TARGET_GLOBAL_INT <https://pixhawk.ethz.ch/mavlink/ #SET_POSITION_TARGET_GLOBAL_INT >`_ and
193
- `SET_POSITION_TARGET_LOCAL_NED <https://pixhawk.ethz.ch/mavlink/ #SET_POSITION_TARGET_LOCAL_NED >`_
192
+ The `SET_POSITION_TARGET_GLOBAL_INT <https://mavlink.io/en/messages/common.html #SET_POSITION_TARGET_GLOBAL_INT >`_ and
193
+ `SET_POSITION_TARGET_LOCAL_NED <https://mavlink.io/en/messages/common.html #SET_POSITION_TARGET_LOCAL_NED >`_
194
194
MAVLink commands allow you to specify the acceleration, force and yaw. However, commands setting
195
195
these parameters are ignored by the vehicle.
196
196
@@ -221,7 +221,7 @@ to encode the message and then calling :py:func:`send_mavlink() <dronekit.Vehicl
221
221
222
222
``message_factory() `` uses a factory method for the encoding. The name of this method will always be the
223
223
lower case version of the message/command name with ``_encode `` appended. For example, to encode a
224
- `SET_POSITION_TARGET_LOCAL_NED <https://pixhawk.ethz.ch/mavlink/ #SET_POSITION_TARGET_LOCAL_NED >`_
224
+ `SET_POSITION_TARGET_LOCAL_NED <https://mavlink.io/en/messages/common.html #SET_POSITION_TARGET_LOCAL_NED >`_
225
225
message we call ``message_factory.set_position_target_local_ned_encode() `` with values for all the
226
226
message fields as arguments:
227
227
@@ -248,7 +248,7 @@ really intended for a specific component.
248
248
249
249
.. _guided_mode_how_to_send_commands_command_long :
250
250
251
- In Copter, the `COMMAND_LONG message <https://pixhawk.ethz.ch/mavlink/ #COMMAND_LONG >`_ can be used send/package
251
+ In Copter, the `COMMAND_LONG message <https://mavlink.io/en/messages/common.html #COMMAND_LONG >`_ can be used send/package
252
252
*a number * of different `supported MAV_CMD commands <http://dev.ardupilot.com/wiki/copter-commands-in-guided-mode/ >`_.
253
253
The factory function is again the lower case message name with suffix ``_encode `` (``message_factory.command_long_encode ``).
254
254
The message parameters include the actual command to be sent (in the code fragment below ``MAV_CMD_CONDITION_YAW ``) and its fields.
@@ -474,7 +474,7 @@ Other information
474
474
=================
475
475
476
476
* `NED Frame <http://en.wikipedia.org/wiki/North_east_down >`_
477
- * `MISSION_ITEM <https://pixhawk.ethz.ch/mavlink/ #MISSION_ITEM >`_
477
+ * `MISSION_ITEM <https://mavlink.io/en/messages/common.html #MISSION_ITEM >`_
478
478
* `GUIDED Mode for Copter <http://copter.ardupilot.com/wiki/flying-arducopter/flight-modes/ac2_guidedmode/ >`_ (wiki).
479
479
* `GUIDED mode for Plane <http://plane.ardupilot.com/wiki/flying/flight-modes/#guided >`_ (wiki).
480
480
* `Copter Commands in Guided Mode <http://dev.ardupilot.com/wiki/copter-commands-in-guided-mode/ >`_ (wiki).
0 commit comments