You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix wrong units & improve explanation for subTree migration (ros-navigation#867)
* fix wrong units
Signed-off-by: Adi Vardi <adi.vardi@enway.ai>
* Clearer explanation
Signed-off-by: Adi Vardi <adi.vardi@enway.ai>
* rm some line breaks
---------
Signed-off-by: Adi Vardi <adi.vardi@enway.ai>
Signed-off-by: Jaerak Son <sjr9017@naver.com>
Copy file name to clipboardExpand all lines: configuration/packages/configuring-bt-navigator.rst
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -110,7 +110,7 @@ Parameters
110
110
==== =======
111
111
112
112
Description
113
-
Default timeout value (in milliseconds) while a BT action node is waiting for acknowledgement from an action server.
113
+
Default timeout value (in milliseconds) for a BT action node to wait for acknowledgement from an action server.
114
114
This value will be overwritten for a BT node if the input port "server_timeout" is provided.
115
115
116
116
:default_cancel_timeout:
@@ -122,7 +122,7 @@ Parameters
122
122
==== =======
123
123
124
124
Description
125
-
Default timeout (in seconds) for BT action node cancellation requests during node halt.
125
+
Default timeout (in milliseconds) for BT action node cancellation requests during node halt.
126
126
This value will be overwritten for a BT node if the input port "cancel_timeout" is provided.
127
127
128
128
:wait_for_service_timeout:
@@ -134,7 +134,7 @@ Parameters
134
134
==== =======
135
135
136
136
Description
137
-
Default timeout value (in milliseconds) while Action or Service BT nodes will waiting for acknowledgement from an service or action server on BT initialization (e.g. ``wait_for_action_server(timeout)``).
137
+
Default timeout value (in milliseconds) for an Action or Service BT nodes to wait for acknowledgement from an service or action server on BT initialization (e.g. ``wait_for_action_server(timeout)``).
138
138
This value will be overwritten for a BT node if the input port "wait_for_service_timeout" is provided.
Copy file name to clipboardExpand all lines: migration/Kilted.rst
+6-4Lines changed: 6 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -361,10 +361,12 @@ See also :ref:`configuring_bt_navigator`
361
361
Add BehaviorTree SubTrees Support
362
362
---------------------------------
363
363
364
-
The BehaviorTree engine now supports SubTrees in different files within directory(s) set through ``bt_search_directories`` parameter. This allows you to modularize your behavior trees into smaller components that can be reused across different trees.
365
-
The interface now supports passing the behavior tree file or ID as input to the `loadBehaviorTree` method of the BT action server.
366
-
Each behavior tree is now strictly required to have its own unique ID, therefore the need to replace `MainTre` to a unique ID. For example, in `navigate_through_poses_w_replanning_and_recovery.xml
367
-
` `MainTree` can be replaced with `NavigateThroughPosesWReplanningAndRecovery`.
364
+
The BehaviorTree engine now supports loading SubTrees from multiple files.
365
+
This allows you to modularize your behavior trees into smaller components that can be reused across different trees.
366
+
The .xml files should be located within directory(s) set through the ``bt_search_directories`` parameter.
367
+
368
+
The interface also supports requesting the desired behavior tree as a filepath or as an ID.
369
+
To use the ID or multiple SubTrees features, each behavior tree is required to have its own unique ID - replace `MainTree` with a unique ID.
368
370
369
371
Option to have custom window size and poly order in Savitsky-Golay Smoother
0 commit comments