Skip to content

Commit

Permalink
Merge pull request #57 from aerostack2/platforms_moved
Browse files Browse the repository at this point in the history
[feat] new installation mode
  • Loading branch information
RPS98 authored Apr 23, 2024
2 parents 679da4c + 629dc50 commit 09a5e4a
Show file tree
Hide file tree
Showing 3 changed files with 47 additions and 1 deletion.
14 changes: 13 additions & 1 deletion docs/_03_aerial_platforms/_crazyflie/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,19 @@ Install platform package
.. warning:: This package is not available for binary installation yet. Cooming soon.

* For source installation, clone Aerostack2 repository into your workspace and build it. See it in :ref:`Aerostack2 installation guide <getting_started_ubuntu_installation_source>`.
* For source installation, clone the platform repository into your workspace and build it.

.. code-block:: bash
# If you have installed Aerostack2 from sources we recommend to clone the package in the src folder of your workspace otherwise you can clone it in any ROS 2 workspace you want.
cd ~/aerostack2_ws/src/aerostack2/as2_aerial_platforms
git clone git@github.com:aerostack2/as2_platform_crazyflie.git
cd ~/aerostack2_ws
rosdep install as2_platform_crazyflie --from-paths src --ignore-src -r -y
colcon build --packages-up-to as2_platform_crazyflie
See it in :ref:`Aerostack2 installation guide <getting_started_ubuntu_installation_source>`.



Expand Down
18 changes: 18 additions & 0 deletions docs/_03_aerial_platforms/_dji/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,24 @@ DJI Matrice Series using `DJI Onboard SDK <https://github.com/dji-sdk/Onboard-SD
Installation
------------

* For binary installation, install by running:

.. code-block:: bash
sudo apt install ros-humble-as2-platform-dji-osdk
.. warning:: This package is not available for binary installation yet. Cooming soon.

* For source installation, clone the platform repository into your workspace and build it.

.. code-block:: bash
# If you have installed Aerostack2 from sources we recommend to clone the package in the src folder of your workspace otherwise you can clone it in any ROS 2 workspace you want.
cd ~/aerostack2_ws/src/aerostack2/as2_aerial_platforms
git clone git@github.com:aerostack2/as2_platform_dji_osdk.git
cd ~/aerostack2_ws
rosdep install as2_platform_dji_osdk --from-paths src --ignore-src -r -y
colcon build --packages-up-to as2_platform_dji_osdk
.. _aerial_platform_dji_matrice_installation_package:
Expand Down
16 changes: 16 additions & 0 deletions docs/_03_aerial_platforms/_ryze_tello/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,22 @@ DJI Tello is controlled using UDP socket communication. The DJI Tello platform p
Installation
------------

.. code-block:: bash
sudo apt install ros-humble-as2-platform-tello
.. warning:: This package is not available for binary installation yet. Cooming soon.

* For source installation, clone the platform repository into your workspace and build it.

.. code-block:: bash
# If you have installed Aerostack2 from sources we recommend to clone the package in the src folder of your workspace otherwise you can clone it in any ROS 2 workspace you want.
cd ~/aerostack2_ws/src/aerostack2/as2_aerial_platforms
git clone git@github.com:aerostack2/as2_platform_tello.git
cd ~/aerostack2_ws
rosdep install as2_platform_tello --from-paths src --ignore-src -r -y
colcon build --packages-up-to as2_platform_tello
.. _aerial_platform_dji_tello_installation_package:
Expand Down

0 comments on commit 09a5e4a

Please sign in to comment.