-
Notifications
You must be signed in to change notification settings - Fork 97
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 #1328 from knorth55/fetch-melodic-support
- Loading branch information
Showing
40 changed files
with
851 additions
and
113 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
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
18 changes: 18 additions & 0 deletions
18
jsk_fetch_robot/jsk_fetch_startup/config/install_supervisor.sh
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,18 @@ | ||
#!/bin/bash | ||
|
||
jsk_fetch_startup=$(builtin cd "`dirname "${BASH_SOURCE[0]}"`"/.. > /dev/null && pwd) | ||
|
||
IFS=':' read -r -a prefix_paths <<< "$CMAKE_PREFIX_PATH" | ||
current_prefix_path="${prefix_paths[0]}" | ||
|
||
set -x | ||
|
||
cd $jsk_fetch_startup/supervisor_scripts | ||
for file in $(ls ./*.conf); do | ||
sudo cp $file /etc/supervisor/conf.d/ | ||
sudo chown root:root /etc/supervisor/conf.d/$file | ||
sudo chmod 644 /etc/supervisor/conf.d/$file | ||
echo "copied $file to /etc/supervisor/conf.d" | ||
done | ||
|
||
set +x |
16 changes: 16 additions & 0 deletions
16
jsk_fetch_robot/jsk_fetch_startup/config/install_tmuxinator.sh
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,16 @@ | ||
#!/bin/bash | ||
|
||
jsk_fetch_startup=$(builtin cd "`dirname "${BASH_SOURCE[0]}"`"/.. > /dev/null && pwd) | ||
|
||
set -x | ||
|
||
if [ ! command -v tmuxinator &> /dev/null ]; then | ||
sudo apt update | ||
sudo apt install tmuxinator | ||
fi | ||
if [ ! -d "$HOME/.tmuxinator" ]; then | ||
mkdir $HOME/.tmuxinator | ||
fi | ||
ln -sf $jsk_fetch_startup/tmuxinator_yaml/log.yml $HOME/.tmuxinator/log.yml | ||
|
||
set +x |
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,18 @@ | ||
#!/bin/bash | ||
|
||
jsk_fetch_startup=$(builtin cd "`dirname "${BASH_SOURCE[0]}"`"/.. > /dev/null && pwd) | ||
|
||
IFS=':' read -r -a prefix_paths <<< "$CMAKE_PREFIX_PATH" | ||
current_prefix_path="${prefix_paths[0]}" | ||
|
||
set -x | ||
|
||
cd $jsk_fetch_startup/udev_rules | ||
for file in $(ls ./*.rules); do | ||
sudo cp $file /etc/udev/rules.d/ | ||
sudo chown root:root /etc/udev/rules.d/$file | ||
sudo chmod 644 /etc/udev/rules.d/$file | ||
echo "copied $file to /etc/udev/rules.d/" | ||
done | ||
|
||
set +x |
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
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
14 changes: 14 additions & 0 deletions
14
jsk_fetch_robot/jsk_fetch_startup/launch/fetch_insta360_indigo.launch
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 @@ | ||
<launch> | ||
<!-- Insta360 images --> | ||
<include file="$(find jsk_perception)/sample/sample_insta360_air.launch"> | ||
<arg name="gui" value="false" /> | ||
<!-- Reduce CPU load --> | ||
<!-- To check the valid formats, --> | ||
<!-- $ sudo apt-get install v4l-utils --> | ||
<!-- $ v4l2-ctl -d /dev/insta360 -\-list-formats-ext --> | ||
<arg name="height" value="736" /> | ||
<arg name="width" value="1472" /> | ||
<!-- for indigo --> | ||
<arg name="use_usb_cam" value="true" /> | ||
</include> | ||
</launch> |
14 changes: 14 additions & 0 deletions
14
jsk_fetch_robot/jsk_fetch_startup/launch/fetch_insta360_melodic.launch
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 @@ | ||
<launch> | ||
<!-- Insta360 images --> | ||
<include file="$(find jsk_perception)/sample/sample_insta360_air.launch"> | ||
<arg name="gui" value="false" /> | ||
<!-- Reduce CPU load --> | ||
<!-- To check the valid formats, --> | ||
<!-- $ sudo apt-get install v4l-utils --> | ||
<!-- $ v4l2-ctl -d /dev/insta360 -\-list-formats-ext --> | ||
<arg name="height" value="736" /> | ||
<arg name="width" value="1472" /> | ||
<!-- for melodic --> | ||
<arg name="use_usb_cam" value="false" /> | ||
</include> | ||
</launch> |
7 changes: 7 additions & 0 deletions
7
jsk_fetch_robot/jsk_fetch_startup/launch/navigation/fetch_amcl_common_params.yaml
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,7 @@ | ||
amcl: | ||
update_min_a: 0.05 # update filter every 0.05 [rad] rotation | ||
update_min_d: 0.1 # update filter every 0.1 [m] translation | ||
odom_alpha1: 0.1 # rotation noise per rotation | ||
odom_alpha2: 0.05 # rotation noise per translation | ||
odom_alpha3: 0.05 # translation noise per translation | ||
odom_alpha4: 0.1 # translation noise per rotation |
8 changes: 8 additions & 0 deletions
8
jsk_fetch_robot/jsk_fetch_startup/launch/navigation/fetch_amcl_indigo_params.yaml
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,8 @@ | ||
amcl: | ||
kld_err: 0.1 | ||
kld_z: 0.5 | ||
laser_z_hit: 0.9 | ||
laser_z_rand: 0.5 | ||
laser_sigma_hit: 0.1 | ||
laser_likelihood_max_dist: 4.0 | ||
resample_interval: 1 |
Empty file.
7 changes: 7 additions & 0 deletions
7
jsk_fetch_robot/jsk_fetch_startup/launch/navigation/fetch_amcl_melodic_params.yaml
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,7 @@ | ||
amcl: | ||
update_min_a: 0.05 # update filter every 0.05 [rad] rotation | ||
update_min_d: 0.1 # update filter every 0.1 [m] translation | ||
odom_alpha1: 0.01 # rotation noise per rotation | ||
odom_alpha2: 0.01 # rotation noise per translation | ||
odom_alpha3: 0.01 # translation noise per translation | ||
odom_alpha4: 0.01 # translation noise per rotation |
Oops, something went wrong.