-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
updated instructions for avoiding ros msg import error
- Loading branch information
Showing
1 changed file
with
9 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -136,11 +136,17 @@ | |
git clone [email protected]:Herpderk/uavf_msgs.git | ||
cd .. | ||
source /opt/ros/foxy/setup.bash | ||
colcon build | ||
``` | ||
Everytime you make a change to your workspace, rebuild with this command: | ||
``` | ||
colcon build --merge-install | ||
``` | ||
If you compile with only "colcon build", you will get import errors with your ROS message types. | ||
|
||
|
||
3. Run this command everytime you've compiled the workspace: | ||
3. Run this command after everytime you've built the workspace: | ||
``` | ||
source install/local_setup.bash | ||
source install/setup.bash | ||
``` | ||
|
||
4. Test it out with an example | ||
|