-
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.
added modification discussed with charlie
Signed-off-by: Stefano Bernagozzi <[email protected]>
- Loading branch information
Showing
3 changed files
with
57 additions
and
5 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
50 changes: 50 additions & 0 deletions
50
laboratory-tour/src/behavior_tree/BT/bt_charlie/bt_scheduler_charlie.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,50 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<root BTCPP_format="3"> | ||
<BehaviorTree ID="PoiScheduler_Charlie"> | ||
<Fallback> | ||
<Sequence> | ||
<Inverter> | ||
<ROS2Condition name="Poi1Done" | ||
interface="ROS2SERVICE" | ||
isMonitored="false" | ||
nodeName=""/> | ||
</Inverter> | ||
<ROS2Action name="SetPoi1" | ||
interface="ROS2SERVICE" | ||
isMonitored="false" | ||
nodeName=""/> | ||
</Sequence> | ||
<Sequence> | ||
<Inverter> | ||
<ROS2Condition name="Poi2Done" | ||
interface="ROS2SERVICE" | ||
isMonitored="false" | ||
nodeName=""/> | ||
</Inverter> | ||
<ROS2Action name="SetPoi2" | ||
interface="ROS2SERVICE" | ||
isMonitored="false" | ||
nodeName=""/> | ||
</Sequence> | ||
</Fallback> | ||
</BehaviorTree> | ||
|
||
<!-- Description of Node Models (used by Groot) --> | ||
<TreeNodesModel> | ||
<Action ID="ROS2Action"> | ||
<input_port name="interface" | ||
default="ROS2SERVICE"/> | ||
<input_port name="isMonitored" | ||
default="false"/> | ||
<input_port name="nodeName"/> | ||
</Action> | ||
<Condition ID="ROS2Condition"> | ||
<input_port name="interface" | ||
default="ROS2SERVICE"/> | ||
<input_port name="isMonitored" | ||
default="false"/> | ||
<input_port name="nodeName"/> | ||
</Condition> | ||
</TreeNodesModel> | ||
|
||
</root> |