Skip to content

Commit 53ca517

Browse files
committed
examples: Change the reference URL
1 parent 3ee89b7 commit 53ca517

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

docs/examples/guided-set-speed-yaw-demo.rst

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -189,16 +189,16 @@ The functions for controlling vehicle movement are:
189189
DroneKit position controller method. It is called from :ref:`goto <example_guided_mode_goto_convenience>` to fly a triangular path.
190190
* :ref:`goto_position_target_global_int() <example_guided_mode_goto_position_target_global_int>`
191191
is a position controller that uses the
192-
`SET_POSITION_TARGET_GLOBAL_INT <https://pixhawk.ethz.ch/mavlink/#SET_POSITION_TARGET_GLOBAL_INT>`_ command.
192+
`SET_POSITION_TARGET_GLOBAL_INT <https://mavlink.io/en/messages/common.html#SET_POSITION_TARGET_GLOBAL_INT>`_ command.
193193
* :ref:`goto_position_target_local_ned() <example_guided_mode_goto_position_target_local_ned>`
194-
is a position controller that uses `SET_POSITION_TARGET_LOCAL_NED <https://pixhawk.ethz.ch/mavlink/#SET_POSITION_TARGET_LOCAL_NED>`_
194+
is a position controller that uses `SET_POSITION_TARGET_LOCAL_NED <https://mavlink.io/en/messages/common.html#SET_POSITION_TARGET_LOCAL_NED>`_
195195
command (taking values in NED frame, relative to the home position). This is used to fly a square path.
196196
The script is put to sleep for a certain time in order to allow the vehicle to reach the specified position.
197197
* :ref:`send_ned_velocity() <guided_mode_copter_velocity_control>` is a velocity controller.
198-
It uses `SET_POSITION_TARGET_LOCAL_NED <https://pixhawk.ethz.ch/mavlink/#SET_POSITION_TARGET_LOCAL_NED>`_
198+
It uses `SET_POSITION_TARGET_LOCAL_NED <https://mavlink.io/en/messages/common.html#SET_POSITION_TARGET_LOCAL_NED>`_
199199
to fly a square path using velocity vectors to define the speed in each direction.
200200
* :ref:`send_global_velocity() <example_guided_mode_send_global_velocity>` is a velocity controller.
201-
It uses `SET_POSITION_TARGET_GLOBAL_INT <https://pixhawk.ethz.ch/mavlink/#SET_POSITION_TARGET_GLOBAL_INT>`_
201+
It uses `SET_POSITION_TARGET_GLOBAL_INT <https://mavlink.io/en/messages/common.html#SET_POSITION_TARGET_GLOBAL_INT>`_
202202
to fly a diamond-shaped path. The behaviour is essentially the same as for ``send_ned_velocity()``
203203
because the velocity components in both commands are in the NED frame.
204204
* :ref:`goto <example_guided_mode_goto_convenience>` is a convenience function for specifying a target location
@@ -262,7 +262,7 @@ send_global_velocity()
262262
----------------------
263263

264264
The function ``send_global_velocity()`` generates a
265-
`SET_POSITION_TARGET_GLOBAL_INT <https://pixhawk.ethz.ch/mavlink/#SET_POSITION_TARGET_GLOBAL_INT>`_
265+
`SET_POSITION_TARGET_GLOBAL_INT <https://mavlink.io/en/messages/common.html#SET_POSITION_TARGET_GLOBAL_INT>`_
266266
MAVLink message which is used to directly specify the speed components of the vehicle in the NED
267267
frame.
268268

@@ -359,7 +359,7 @@ The ``type_mask`` enables the position parameters (the last three bits of of the
359359

360360
.. note::
361361

362-
The `MAVLink protocol documentation <https://pixhawk.ethz.ch/mavlink/#SET_POSITION_TARGET_LOCAL_NED>`_
362+
The `MAVLink protocol documentation <https://mavlink.io/en/messages/common.html#SET_POSITION_TARGET_LOCAL_NED>`_
363363
lists a number of possible frames of reference. Up until Copter 3.2.1 the actual frame used is always
364364
relative to the home location (as indicated by MAV_FRAME_LOCAL_NED). Starting from Copter 3.3
365365
you can specify `other frames <http://dev.ardupilot.com/wiki/copter-commands-in-guided-mode/#set_position_target_local_ned>`_,

0 commit comments

Comments
 (0)