This repository has been archived by the owner on Aug 3, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #70 from tiiuae/rel_4_0
Rel 4 0
- Loading branch information
Showing
34 changed files
with
637 additions
and
47 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
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 |
---|---|---|
|
@@ -52,9 +52,6 @@ | |
[submodule "ros2_ws/src/fog_msgs"] | ||
path = ros2_ws/src/fog_msgs | ||
url = https://github.com/tiiuae/fog_msgs.git | ||
[submodule "ros2_ws/src/fog_core"] | ||
path = ros2_ws/src/fog_core | ||
url = https://github.com/tiiuae/fog_core.git | ||
[submodule "ros2_ws/src/octomap_server2"] | ||
path = ros2_ws/src/octomap_server2 | ||
url = https://github.com/tiiuae/octomap_server2.git | ||
|
@@ -64,9 +61,27 @@ | |
[submodule "ros2_ws/src/rplidar_ros2"] | ||
path = ros2_ws/src/rplidar_ros2 | ||
url = https://github.com/tiiuae/rplidar_ros2.git | ||
[submodule "tools/tmux"] | ||
path = tools/tmux | ||
url = https://github.com/tmux/tmux.git | ||
[submodule "tools/tmuxinator"] | ||
path = tools/tmuxinator | ||
url = https://github.com/tmuxinator/tmuxinator.git | ||
[submodule "ros2_ws/src/fog_msgs"] | ||
path = ros2_ws/src/fog_msgs | ||
url = https://github.com/tiiuae/fog_msgs.git | ||
[submodule "ros2_ws/src/control_interface"] | ||
path = ros2_ws/src/control_interface | ||
url = https://github.com/tiiuae/control_interface.git | ||
[submodule "rtl8812au"] | ||
path = rtl8812au | ||
url = https://github.com/tiiuae/rtl8812au.git | ||
[submodule "ros2_ws/src/fog_gazebo_resources"] | ||
path = ros2_ws/src/fog_gazebo_resources | ||
url = https://github.com/tiiuae/fog_gazebo_resources.git | ||
[submodule "mission-data-recorder"] | ||
path = mission-data-recorder | ||
url = [email protected]:tiiuae/mission-data-recorder.git | ||
[submodule "ros2_ws/src/mocap_pose"] | ||
path = ros2_ws/src/mocap_pose | ||
url = [email protected]:tiiuae/mocap_pose.git |
Submodule fogsw_configs
updated
from 5b156b to dab958
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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
#!/bin/bash | ||
|
||
set -e | ||
|
||
trap 'last_command=$current_command; current_command=$BASH_COMMAND' DEBUG | ||
trap 'echo "$0: \"${last_command}\" command failed with exit code $?"' ERR | ||
|
||
echo "$0: installing ROS2-related dependencies" | ||
|
||
sudo apt-get -y install \ | ||
ros-foxy-octomap \ | ||
ros-foxy-octomap-msgs \ | ||
ros-foxy-dynamic-edt-3d \ | ||
|
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
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 |
---|---|---|
@@ -0,0 +1,31 @@ | ||
#!/bin/bash | ||
|
||
set -e | ||
|
||
trap 'last_command=$current_command; current_command=$BASH_COMMAND' DEBUG | ||
trap 'echo "$0: \"${last_command}\" command failed with exit code $?"' ERR | ||
|
||
# get the path to this script | ||
MY_PATH=`dirname "$0"` | ||
MY_PATH=`( cd "$MY_PATH" && pwd )` | ||
|
||
echo "$0: uninstalling pre-installed tmux" | ||
sudo apt-get -y remove tmux | ||
|
||
echo "$0: installing tmux build dependencies" | ||
sudo apt-get -y install libevent-dev bison | ||
|
||
echo "$0: building tmux" | ||
|
||
# compile and install custom tmux | ||
cd $MY_PATH/../../../tools/tmux | ||
( ./autogen.sh > /dev/null && ./configure > /dev/null && make > /dev/null && sudo make install-binPROGRAMS > /dev/null ) || ( echo "Tmux compilation failed, installing normal tmux" && sudo apt-get -y install tmux) | ||
git clean -fd | ||
|
||
FILE=$HOME/.tmux.conf | ||
if [ -e "$FILE" ]; then | ||
echo "$0: .tmux.conf exists, not copying" | ||
else | ||
echo "$0: copying .tmux.conf" | ||
ln -sf $MY_PATH/dottmux.conf $FILE | ||
fi |
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 |
---|---|---|
@@ -0,0 +1,19 @@ | ||
#!/bin/bash | ||
|
||
set -e | ||
|
||
trap 'last_command=$current_command; current_command=$BASH_COMMAND' DEBUG | ||
trap 'echo "$0: \"${last_command}\" command failed with exit code $?"' ERR | ||
|
||
# get the path to this script | ||
MY_PATH=`dirname "$0"` | ||
MY_PATH=`( cd "$MY_PATH" && pwd )` | ||
|
||
cd $MY_PATH/../../tools/tmuxinator | ||
|
||
echo "$0: installing tmuxinator" | ||
|
||
sudo apt-get -y install ruby gem | ||
|
||
gem build tmuxinator.gemspec | ||
sudo gem install tmuxinator -v 1.1.5 |
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 |
---|---|---|
@@ -0,0 +1,26 @@ | ||
#!/bin/bash | ||
|
||
set -e | ||
|
||
trap 'last_command=$current_command; current_command=$BASH_COMMAND' DEBUG | ||
trap 'echo "$0: \"${last_command}\" command failed with exit code $?"' ERR | ||
|
||
# get the path to this script | ||
MY_PATH=`dirname "$0"` | ||
MY_PATH=`( cd "$MY_PATH" && pwd )` | ||
|
||
## | --------- change to the directory of this script --------- | | ||
|
||
cd "$MY_PATH" | ||
|
||
## | ---------- install ROS 2 related dependencies ------------ | | ||
|
||
bash $MY_PATH/dependencies/ros_related.sh | ||
|
||
## | ---------------------- install tmux ---------------------- | | ||
|
||
bash $MY_PATH/dependencies/tmux/install.sh | ||
|
||
## | ------------------- install tmuxinator ------------------- | | ||
|
||
bash $MY_PATH/dependencies/tmuxinator.sh |
Submodule mission-data-recorder
added at
ff2489
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 |
---|---|---|
@@ -0,0 +1,2 @@ | ||
*.deb | ||
*.ddeb |
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 |
---|---|---|
|
@@ -4,17 +4,25 @@ Maintainer: manuel.segarra-abad <[email protected]> | |
Architecture: amd64 | ||
Description: FOG SW meta package. | ||
Depends: agent-protocol-splitter (= 1.0.0-13~git20210419.ed16b42), | ||
communication-link (= 2.0.0-29~git20210526.843fd45), | ||
fast-dds-gen (= 1.0.0-3~git20210421.694704f), | ||
fogsw-configs (= 1.0.0-4~git20210526.5b156bf), | ||
fog-sw-systemd-services (= 1.0.0-21~git20210601.675cb6f), | ||
communication-link (= 2.0.0-33~git20210701.545ea2f), | ||
fog-sw-systemd-services (= 1.0.0-36~git20210709.bd3efff), | ||
libsurvive (= 1.0.0-3~git20210421.b966a6c), | ||
mavlink-router (= 1.0.0-6~git20210419.14c1368), | ||
mavsdk (= 0.34.0), | ||
mission-engine (= 2.0.0-10~git20210526.b4285bc), | ||
ros-foxy-depthai-ctrl (= 0.5.3-28~git20210601.80de68d), | ||
mission-data-recorder (= 1.0.0-28~git20210707.ff24897), | ||
mission-engine (= 2.0.0-16~git20210701.545ea2f), | ||
ros-foxy-depthai-ctrl (= 0.5.6-34~git20210624.1f5590e), | ||
ros-foxy-indoor-pos (= 1.0.0-12~git20210426.81d1987), | ||
ros-foxy-mesh-com (= 0.3.3-29~git20210601.8ecb707), | ||
ros-foxy-px4-mavlink-ctrl (= 0.1.0-11~git20210426.5836a83), | ||
ros-foxy-mesh-com (= 0.3.3-34~git20210611.0d866b2), | ||
ros-foxy-mocap-pose (= 0.0.4-3~git20210617.713e012), | ||
ros-foxy-px4-msgs (= 2.0.1-5~git20210419.b4c4a12), | ||
ros-foxy-px4-ros-com (= 0.1.0-15~git20210602.4acff59) | ||
ros-foxy-px4-ros-com (= 0.1.0-20~git20210708.a1147fa), | ||
rtl8812au-kmod (= 1.0.0-2~git20210614.dc56cff), | ||
ros-foxy-control-interface (= 0.0.3-17~git20210709.22ce14e), | ||
ros-foxy-fog-msgs (= 0.0.3-6~git20210621.90040f9), | ||
ros-foxy-navigation (= 0.0.3-16~git20210709.f083eee), | ||
ros-foxy-octomap-server2 (= 0.0.1-6~git20210617.22fd119), | ||
ros-foxy-rplidar-ros2 (= 1.10.0-10~git20210615.cbb80ba) | ||
Conflicts: ros-foxy-px4-mavlink-ctrl | ||
Recomends: fogsw-configs (= 1.0.0-14~git20210621.dab9587), | ||
px4-firmware-updater (= 1.11.0-1.0.7-7-g913cf7bbd9) |
Oops, something went wrong.