Skip to content

Commit 1dda2a2

Browse files
committed
copter: Change the reference URL
1 parent 53ca517 commit 1dda2a2

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

docs/guide/copter/guided_mode.rst

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -83,8 +83,8 @@ for all positional movement commands until it is set to another value.
8383
.. tip::
8484

8585
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
8888
a ``type_mask`` bitmask that enables the position parameters. The main difference between these commands is
8989
that the former allows you to specify the location relative to the "global" frames (like
9090
``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
175175
.. tip::
176176

177177
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>`_
179179
MAVLink command, as described in :ref:`example_guided_mode_send_global_velocity`.
180180

181181

@@ -189,8 +189,8 @@ ArduPilot does not currently support controlling the vehicle by specifying accel
189189

190190
.. note::
191191

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>`_
194194
MAVLink commands allow you to specify the acceleration, force and yaw. However, commands setting
195195
these parameters are ignored by the vehicle.
196196

@@ -221,7 +221,7 @@ to encode the message and then calling :py:func:`send_mavlink() <dronekit.Vehicl
221221

222222
``message_factory()`` uses a factory method for the encoding. The name of this method will always be the
223223
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>`_
225225
message we call ``message_factory.set_position_target_local_ned_encode()`` with values for all the
226226
message fields as arguments:
227227

@@ -248,7 +248,7 @@ really intended for a specific component.
248248

249249
.. _guided_mode_how_to_send_commands_command_long:
250250

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
252252
*a number* of different `supported MAV_CMD commands <http://dev.ardupilot.com/wiki/copter-commands-in-guided-mode/>`_.
253253
The factory function is again the lower case message name with suffix ``_encode`` (``message_factory.command_long_encode``).
254254
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
474474
=================
475475

476476
* `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>`_
478478
* `GUIDED Mode for Copter <http://copter.ardupilot.com/wiki/flying-arducopter/flight-modes/ac2_guidedmode/>`_ (wiki).
479479
* `GUIDED mode for Plane <http://plane.ardupilot.com/wiki/flying/flight-modes/#guided>`_ (wiki).
480480
* `Copter Commands in Guided Mode <http://dev.ardupilot.com/wiki/copter-commands-in-guided-mode/>`_ (wiki).

0 commit comments

Comments
 (0)