-
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.
Merge pull request #4 from sam-xl/feature/tno_integration_p1
Update TNO interface definition
- Loading branch information
Showing
7 changed files
with
37 additions
and
7 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?> | ||
<package format="3"> | ||
<name>penelope_aerospace_pl_interfaces_examples</name> | ||
<version>1.0.0</version> | ||
<version>1.0.1</version> | ||
<description>Simple example of a ROS2 action server and client for the PeneloPe specific interfaces</description> | ||
<maintainer email="[email protected]">Eugenio Bernardi</maintainer> | ||
<license>BSD-3-Clause</license> | ||
|
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 |
---|---|---|
|
@@ -14,7 +14,7 @@ | |
|
||
uint8 ACCEPTED=1 | ||
uint8 EXECUTING=2 | ||
uint8 PAUSED=7 | ||
uint8 CANCELING=3 | ||
uint8 PAUSED=3 | ||
uint8 CANCELING=4 | ||
|
||
uint8 data |
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,15 @@ | ||
#------------------------------------------------------------------------------- | ||
# DVM Triggers State (TNO) | ||
#------------------------------------------------------------------------------- | ||
|
||
# Description of the DVM process states: | ||
# TRIGGERS_ACTIVE | ||
# A motion request with triggers for the DVM system is sent to the manipulator | ||
# and is being processed. | ||
# NO_TRIGGERS | ||
# No motion request with triggers is active or being processed. This is a valid | ||
# state for motions without triggers or while no motion is requested. | ||
|
||
uint8 TRIGGERS_ACTIVE = 1 | ||
uint8 NO_TRIGGERS = 2 | ||
uint8 data |
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 |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?> | ||
<package format="3"> | ||
<name>penelope_aerospace_pl_msgs</name> | ||
<version>1.0.0</version> | ||
<version>1.0.1</version> | ||
<description>Message and action definition of the PeneloPe interfaces used by the Digital Thread.</description> | ||
<maintainer email="[email protected]">D. Kroezen</maintainer> | ||
<license>BSD-3-Clause</license> | ||
|