Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add instruction to source ROS and add note about warnings #593

Merged
merged 1 commit into from
Nov 21, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions docs2/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -58,11 +58,17 @@ First Installation
.. code-block:: bash

cd ../
source /opt/ros/DISTRO/setup.bash
colcon build --symlink-install --cmake-args -DCMAKE_BUILD_TYPE=Release

.. note::
symlink-install allows you to edit Python and config files without running `colcon build` every time.

.. note::
If you install it for the first time, you will see a lot of warnings at first.
As long as the build of the package finish, you can ignore this for now.


5. Set up Crazyradio

For the crazyradio, you need to setup usb rules in order to communicate with the Crazyflie. Find the instructions for that here `in Bitcraze's USB permission guide for Linux <https://www.bitcraze.io/documentation/repository/crazyflie-lib-python/master/installation/usb_permissions/>`_.
Expand Down Expand Up @@ -106,6 +112,7 @@ You can update your local copy using the following commands:
git submodule sync
git submodule update --init --recursive
cd ../../
source /opt/ros/DISTRO/setup.bash
colcon build --symlink-install --cmake-args -DCMAKE_BUILD_TYPE=Release


Expand Down
Loading