-
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 branch 'master' into develop/fetch
- Loading branch information
Showing
15 changed files
with
255 additions
and
50 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
source User/user_setup.bash | ||
screen -c User/screenrc -r |
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
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 |
---|---|---|
@@ -1,7 +1,4 @@ | ||
<launch> | ||
<include file="$(find naoqi_apps)/launch/tablet.launch" /> | ||
<include file="$(find naoqi_apps)/launch/basic_awareness.launch" /> | ||
<include file="$(find naoqi_apps)/launch/background_movement.launch" /> | ||
<node pkg="jsk_pepper_startup" name="meeting" | ||
type="meeting.l" args="'(main)'" /> | ||
</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
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
31 changes: 31 additions & 0 deletions
31
jsk_pr2_robot/jsk_pr2_startup/jsk_pr2_sensors/manager.launch.xml
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 @@ | ||
<!-- this file is copied and modified from $(find rgbd_launch)/launch/includes/manager.launch.xml --> | ||
<!-- this file is modified from original to add respawn arguments --> | ||
<!-- see https://github.com/ros-drivers/rgbd_launch/pull/40 --> | ||
|
||
<!-- Start nodelet manager --> | ||
<launch> | ||
|
||
<!-- Name here should NOT be globally qualified (node names cannot contain /) --> | ||
<arg name="name" /> | ||
|
||
<!-- Optionally launch manager in GDB, for debugging --> | ||
<arg name="debug" default="false" /> | ||
<arg if="$(arg debug)" name="launch_prefix" value="xterm -e gdb --args" /> | ||
<arg unless="$(arg debug)" name="launch_prefix" value="" /> | ||
<!-- Worker threads --> | ||
<arg name="num_worker_threads" /> | ||
<!-- respawn --> | ||
<arg name="respawn" /> | ||
|
||
<!-- Also globally disable bond heartbeat timeout in debug mode, so everything | ||
doesn't die when you hit a break point --> | ||
<param if="$(arg debug)" name="/bond_disable_heartbeat_timeout" value="true" /> | ||
|
||
<!-- Nodelet manager --> | ||
<node pkg="nodelet" type="nodelet" name="$(arg name)" args="manager" | ||
output="screen" launch-prefix="$(arg launch_prefix)" | ||
respawn="$(arg respawn)"> | ||
<param name="num_worker_threads" value="$(arg num_worker_threads)" /> | ||
</node> | ||
|
||
</launch> |
Oops, something went wrong.