-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix/fms boot shutdown hash 2.3.0 (#137)
* add fms handler Signed-off-by: tkhmy <[email protected]> * add handle negative goal distance (#131) Signed-off-by: tkhmy <[email protected]> * modify sound of emergency stop * modify signage outlook * update hash Signed-off-by: tkhmy <[email protected]> --------- Signed-off-by: tkhmy <[email protected]> Co-authored-by: Shohei Sakai <[email protected]>
- Loading branch information
Showing
20 changed files
with
210 additions
and
43 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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
[develop] | ||
script-dir=$base/lib/external_signage | ||
script_dir=$base/lib/external_signage | ||
[install] | ||
install-scripts=$base/lib/external_signage | ||
install_scripts=$base/lib/external_signage |
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 |
---|---|---|
@@ -1,8 +1,14 @@ | ||
<?xml version="1.0"?> | ||
<launch> | ||
<arg name="signage_param" default="$(find-pkg-share signage)/config/signage_param.yaml" /> | ||
<arg name="fms_client_param" default="$(find-pkg-share signage_fms_client)/config/fms_client_param.yaml" /> | ||
<arg name="debug_mode" default="false" /> | ||
<node pkg="signage" exec="signage" output="screen"> | ||
<param from="$(var signage_param)"/> | ||
</node> | ||
<node pkg="external_signage" exec="external_signage" output="screen" /> | ||
|
||
<node pkg="signage_fms_client" exec="signage_fms_client" output="screen" > | ||
<param from="$(var fms_client_param)"/> | ||
</node> | ||
</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
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,4 +1,4 @@ | ||
[develop] | ||
script-dir=$base/lib/signage | ||
script_dir=$base/lib/signage | ||
[install] | ||
install-scripts=$base/lib/signage | ||
install_scripts=$base/lib/signage |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
signage: | ||
ros__parameters: | ||
post_request_time: 8.0 # second |
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 @@ | ||
<?xml version="1.0"?> | ||
<launch> | ||
<arg name="fms_client_param" default="$(find-pkg-share signage)/config/fms_client_param.yaml" /> | ||
<node pkg="signage_fms_client" exec="signage_fms_client" output="screen" > | ||
<param from="$(var signage_param)"/> | ||
</node> | ||
</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,17 @@ | ||
<?xml version="1.0"?> | ||
<package format="2"> | ||
<name>signage_fms_client</name> | ||
<version>0.1.0</version> | ||
<description>The fms client for signage</description> | ||
|
||
<maintainer email="[email protected]">tkhmy</maintainer> | ||
|
||
<license>Apache License 2.0</license> | ||
<exec_depend>ament_index_python</exec_depend> | ||
|
||
<depend>rclpy</depend> | ||
|
||
<export> | ||
<build_type>ament_python</build_type> | ||
</export> | ||
</package> |
Empty file.
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,4 @@ | ||
[develop] | ||
script_dir=$base/lib/signage_fms_client | ||
[install] | ||
install_scripts=$base/lib/signage_fms_client |
Oops, something went wrong.