Skip to content

Commit

Permalink
Minor changes
Browse files Browse the repository at this point in the history
Signed-off-by: Alberto Tudela <[email protected]>
  • Loading branch information
ajtudela committed May 8, 2024
1 parent 4a5a958 commit 992330f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ namespace scitos2_behavior_tree
using nav2_behavior_tree::BtServiceNode;

/**
* @brief A nav2_behavior_tree::BtServiceNode class that wraps scitos_msgs::srv::EmergencyStop
* @brief A nav2_behavior_tree::BtServiceNode class that wraps scitos2_msgs::srv::EmergencyStop
*/
class EmergencyStopService : public BtServiceNode<scitos2_msgs::srv::EmergencyStop>
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ namespace scitos2_behavior_tree
using nav2_behavior_tree::BtServiceNode;

/**
* @brief A nav2_behavior_tree::BtServiceNode class that wraps scitos_msgs::srv::ResetMotorStop
* @brief A nav2_behavior_tree::BtServiceNode class that wraps scitos2_msgs::srv::ResetMotorStop
*/
class ResetMotorStopService : public BtServiceNode<scitos2_msgs::srv::ResetMotorStop>
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,7 @@ class IsBumperActivatedCondition : public BT::ConditionNode
* @param conf BT node configuration
*/
IsBumperActivatedCondition(
const std::string & condition_name,
const BT::NodeConfiguration & conf);
const std::string & condition_name, const BT::NodeConfiguration & conf);

IsBumperActivatedCondition() = delete;

Expand All @@ -58,8 +57,7 @@ class IsBumperActivatedCondition : public BT::ConditionNode
static BT::PortsList providedPorts()
{
return {
BT::InputPort<std::string>(
"bumper_topic", std::string("/bumper"), "Bumper topic")
BT::InputPort<std::string>("bumper_topic", std::string("/bumper"), "Bumper topic")
};
}

Expand Down

0 comments on commit 992330f

Please sign in to comment.