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 ROS driver for Piksi gps module #416

Merged
merged 8 commits into from
Aug 9, 2022
Merged
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
7 changes: 7 additions & 0 deletions .rosinstall
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,12 @@
- git:
local-name: src/external_pkgs/ros_arduino_bridge
uri: https://github.com/UBC-Snowbots/ros_arduino_bridge.git
- git:
local-name: src/external_pkgs/swiftnav_piksi
uri: https://github.com/PaulBouchier/swiftnav_piksi.git
- git:
local-name: external_libs/libsbp
uri: https://github.com/PaulBouchier/libsbp
- git:
local-name: src/external_pkgs/sicktoolbox
uri: https://github.com/UBC-Snowbots/sicktoolbox.git
Expand All @@ -29,3 +35,4 @@
- git:
local-name: external_libs/joycond
uri: https://github.com/DanielOgorchock/joycond

5 changes: 4 additions & 1 deletion setup_scripts/install_dependencies.sh
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ cd $CURR_DIR
rosdep install --from-paths \
$CURR_DIR/../src \
$CURR_DIR/../src/external_pkgs \
--ignore-src --rosdistro melodic --skip-keys=librealsense2 -y
--ignore-src --rosdistro melodic --skip-keys=librealsense2 --skip-keys=libswiftnav -y

echo "================================================================"
echo "Installing other dependencies specified by our packages"
Expand All @@ -61,6 +61,9 @@ sudo ./setup_realsense_manual.sh

cd $CURR_DIR
sudo ./install_phidgets.sh
cd $CURR_DIR
sudo ./install_libsbp.sh
cd $CURR_DIR

echo "================================================================"
echo "Installing Misc. Utilities"
Expand Down
13 changes: 13 additions & 0 deletions setup_scripts/install_libsbp.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
#!/bin/bash

echo "================================================================"
echo "Installing Swift Navigation's Binary Protocol library || (GPS)"
echo "================================================================"

cd ../external_libs/libsbp/c # get to build space
mkdir build
cd build
cmake ../
make
sudo make install # install headers and libraries into /usr/local