Skip to content
Open
Show file tree
Hide file tree
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
12 changes: 9 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,15 @@ $ git clone https://github.com/uArm-Developer/RosForSwiftAndSwiftPro.git
```
then manually copy package folders *swiftpro* *swift_moveit_config* and *pro_moveit_config* into a catkin_ws/src.

Install ros serial package
```bash
$ sudo apt-get install ros-kinetic-serial
Install dependencies using rosdep
If running the rosdep for the first time start by running:
```
sudo rosdep init
rosdep update
```
Then isntall all dependencies using:
```
rosdep install --from-paths ./ -i
```

Compile
Expand Down
2 changes: 2 additions & 0 deletions swiftpro/package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -46,12 +46,14 @@
<build_depend>message_generation</build_depend>
<build_depend>sensor_msgs</build_depend>
<build_depend>tf</build_depend>
<build_depend>serial</build_depend>
<run_depend>roscpp</run_depend>
<run_depend>rospy</run_depend>
<run_depend>std_msgs</run_depend>
<run_depend>message_runtime</run_depend>
<run_depend>sensor_msgs</run_depend>
<run_depend>tf</run_depend>
<run_depend>serial</run_depend>
<!-- The export tag contains other, unspecified, tags -->
<export>
<!-- Other tools can request additional information be placed here -->
Expand Down