Skip to content

Commit f430550

Browse files
authored
Fix notes in BT nodes that check status (#5757)
* Fix notes in BT nodes that check status Signed-off-by: Maurice <mauricepurnawan@gmail.com> * Update key once again Signed-off-by: Maurice <mauricepurnawan@gmail.com> * Revert "Update key once again" This reverts commit 93a3b4f. Signed-off-by: Maurice <mauricepurnawan@gmail.com> --------- Signed-off-by: Maurice <mauricepurnawan@gmail.com>
1 parent 5531106 commit f430550

28 files changed

+31
-56
lines changed

nav2_behavior_tree/include/nav2_behavior_tree/bt_action_node.hpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,7 @@ using namespace std::chrono_literals; // NOLINT
3434
/**
3535
* @brief Abstract class representing an action based BT node
3636
* @tparam ActionT Type of action
37-
* @note This is an Asynchronous (long-running) node which may return a RUNNING state while executing.
38-
* It will re-initialize when halted.
37+
* @note It will re-initialize when halted.
3938
*/
4039
template<class ActionT>
4140
class BtActionNode : public BT::ActionNodeBase

nav2_behavior_tree/include/nav2_behavior_tree/bt_service_node.hpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,7 @@ using namespace std::chrono_literals; // NOLINT
3535
/**
3636
* @brief Abstract class representing a service based BT node
3737
* @tparam ServiceT Type of service
38-
* @note This is an Asynchronous (long-running) node which may return a RUNNING state while executing.
39-
* It will re-initialize when halted.
38+
* @note It will re-initialize when halted.
4039
*/
4140
template<class ServiceT>
4241
class BtServiceNode : public BT::ActionNodeBase

nav2_behavior_tree/include/nav2_behavior_tree/plugins/action/assisted_teleop_action.hpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,7 @@ namespace nav2_behavior_tree
2727

2828
/**
2929
* @brief A nav2_behavior_tree::BtActionNode class that wraps nav2_msgs::action::AssistedTeleop
30-
* @note This is an Asynchronous (long-running) node which may return a RUNNING state while executing.
31-
* It will re-initialize when halted.
30+
* @note It will re-initialize when halted.
3231
*/
3332
class AssistedTeleopAction : public BtActionNode<nav2_msgs::action::AssistedTeleop>
3433
{

nav2_behavior_tree/include/nav2_behavior_tree/plugins/action/back_up_action.hpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,7 @@ namespace nav2_behavior_tree
2626

2727
/**
2828
* @brief A nav2_behavior_tree::BtActionNode class that wraps nav2_msgs::action::BackUp
29-
* @note This is an Asynchronous (long-running) node which may return a RUNNING state while executing.
30-
* It will re-initialize when halted.
29+
* @note It will re-initialize when halted.
3130
*/
3231
class BackUpAction : public BtActionNode<nav2_msgs::action::BackUp>
3332
{

nav2_behavior_tree/include/nav2_behavior_tree/plugins/action/clear_costmap_service.hpp

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,7 @@ namespace nav2_behavior_tree
2929

3030
/**
3131
* @brief A nav2_behavior_tree::BtServiceNode class that wraps nav2_msgs::srv::ClearEntireCostmap
32-
* @note This is an Asynchronous (long-running) node which may return a RUNNING state while executing.
33-
* It will re-initialize when halted.
32+
* @note It will re-initialize when halted.
3433
*/
3534
class ClearEntireCostmapService : public BtServiceNode<nav2_msgs::srv::ClearEntireCostmap>
3635
{
@@ -54,8 +53,7 @@ class ClearEntireCostmapService : public BtServiceNode<nav2_msgs::srv::ClearEnti
5453
/**
5554
* @brief A nav2_behavior_tree::BtServiceNode class that
5655
* wraps nav2_msgs::srv::ClearCostmapExceptRegion
57-
* @note This is an Asynchronous (long-running) node which may return a RUNNING state while executing.
58-
* It will re-initialize when halted.
56+
* @note It will re-initialize when halted.
5957
*/
6058
class ClearCostmapExceptRegionService
6159
: public BtServiceNode<nav2_msgs::srv::ClearCostmapExceptRegion>
@@ -94,8 +92,7 @@ class ClearCostmapExceptRegionService
9492
/**
9593
* @brief A nav2_behavior_tree::BtServiceNode class that
9694
* wraps nav2_msgs::srv::ClearCostmapAroundRobot
97-
* @note This is an Asynchronous (long-running) node which may return a RUNNING state while executing.
98-
* It will re-initialize when halted.
95+
* @note It will re-initialize when halted.
9996
*/
10097
class ClearCostmapAroundRobotService : public BtServiceNode<nav2_msgs::srv::ClearCostmapAroundRobot>
10198
{
@@ -133,8 +130,7 @@ class ClearCostmapAroundRobotService : public BtServiceNode<nav2_msgs::srv::Clea
133130
/**
134131
* @brief A nav2_behavior_tree::BtServiceNode class that
135132
* wraps nav2_msgs::srv::ClearCostmapAroundPose
136-
* @note This is an Asynchronous (long-running) node which may return a RUNNING state while executing.
137-
* It will re-initialize when halted.
133+
* @note It will re-initialize when halted.
138134
*/
139135
class ClearCostmapAroundPoseService : public BtServiceNode<nav2_msgs::srv::ClearCostmapAroundPose>
140136
{

nav2_behavior_tree/include/nav2_behavior_tree/plugins/action/compute_path_through_poses_action.hpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,7 @@ namespace nav2_behavior_tree
2929

3030
/**
3131
* @brief A nav2_behavior_tree::BtActionNode class that wraps nav2_msgs::action::ComputePathThroughPoses
32-
* @note This is an Asynchronous (long-running) node which may return a RUNNING state while executing.
33-
* It will re-initialize when halted.
32+
* @note It will re-initialize when halted.
3433
*/
3534
class ComputePathThroughPosesAction
3635
: public BtActionNode<nav2_msgs::action::ComputePathThroughPoses>

nav2_behavior_tree/include/nav2_behavior_tree/plugins/action/compute_path_to_pose_action.hpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,7 @@ namespace nav2_behavior_tree
2727

2828
/**
2929
* @brief A nav2_behavior_tree::BtActionNode class that wraps nav2_msgs::action::ComputePathToPose
30-
* @note This is an Asynchronous (long-running) node which may return a RUNNING state while executing.
31-
* It will re-initialize when halted.
30+
* @note It will re-initialize when halted.
3231
*/
3332
class ComputePathToPoseAction : public BtActionNode<nav2_msgs::action::ComputePathToPose>
3433
{

nav2_behavior_tree/include/nav2_behavior_tree/plugins/action/controller_selector_node.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ namespace nav2_behavior_tree
3535
* to get the decision about what controller must be used. It is usually used before of
3636
* the FollowPath. The selected_controller output port is passed to controller_id
3737
* input port of the FollowPath
38-
* @note This is an Asynchronous node. It will re-initialize when halted.
38+
* @note It will re-initialize when halted.
3939
*/
4040
class ControllerSelector : public BT::SyncActionNode
4141
{

nav2_behavior_tree/include/nav2_behavior_tree/plugins/action/drive_on_heading_action.hpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,7 @@ namespace nav2_behavior_tree
2626

2727
/**
2828
* @brief A nav2_behavior_tree::BtActionNode class that wraps nav2_msgs::action::DriveOnHeading
29-
* @note This is an Asynchronous (long-running) node which may return a RUNNING state while executing.
30-
* It will re-initialize when halted.
29+
* @note It will re-initialize when halted.
3130
*/
3231
class DriveOnHeadingAction : public BtActionNode<nav2_msgs::action::DriveOnHeading>
3332
{

nav2_behavior_tree/include/nav2_behavior_tree/plugins/action/follow_path_action.hpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,7 @@ namespace nav2_behavior_tree
2727

2828
/**
2929
* @brief A nav2_behavior_tree::BtActionNode class that wraps nav2_msgs::action::FollowPath
30-
* @note This is an Asynchronous (long-running) node which may return a RUNNING state while executing.
31-
* It will re-initialize when halted.
30+
* @note It will re-initialize when halted.
3231
*/
3332
class FollowPathAction : public BtActionNode<nav2_msgs::action::FollowPath>
3433
{

0 commit comments

Comments
 (0)