Skip to content

Commit

Permalink
removed unused eland service client
Browse files Browse the repository at this point in the history
  • Loading branch information
kratkvit committed Jan 16, 2024
1 parent e21e445 commit 547e4eb
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion launch/automatic_start.launch
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,6 @@

<!-- services -->
<remap from="~takeoff_out" to="uav_manager/takeoff" />
<remap from="~eland_out" to="control_manager/eland" />
<remap from="~toggle_control_output_out" to="control_manager/toggle_output" />
<remap from="~arm_out" to="hw_api/arming" />
<remap from="~validate_reference_out" to="control_manager/validate_reference_2d" />
Expand Down
2 changes: 0 additions & 2 deletions src/automatic_start.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,6 @@ class AutomaticStart : public nodelet::Nodelet {
ros::ServiceClient service_client_toggle_control_output_;
ros::ServiceClient service_client_arm_;
ros::ServiceClient service_client_takeoff_;
ros::ServiceClient service_client_eland_;
ros::ServiceClient service_client_validate_reference_;

// | ----------------------- subscribers ---------------------- |
Expand Down Expand Up @@ -251,7 +250,6 @@ void AutomaticStart::onInit() {
// | --------------------- service clients -------------------- |

service_client_takeoff_ = nh_.serviceClient<std_srvs::Trigger>("takeoff_out");
service_client_eland_ = nh_.serviceClient<std_srvs::Trigger>("eland_out");
service_client_toggle_control_output_ = nh_.serviceClient<std_srvs::SetBool>("toggle_control_output_out");
service_client_arm_ = nh_.serviceClient<std_srvs::SetBool>("arm_out");

Expand Down

0 comments on commit 547e4eb

Please sign in to comment.