Skip to content

Commit

Permalink
Simplified parameters.
Browse files Browse the repository at this point in the history
  • Loading branch information
gremigi-bdai committed Nov 16, 2023
1 parent 956e7a5 commit bdb2d2d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
2 changes: 2 additions & 0 deletions spot_driver_cpp/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,8 @@ add_library(spot_image_publisher
src/api/default_robot_api.cpp
src/api/robot.cpp
src/kinematic_node.cpp
src/kinematic_service.cpp
src/kinematic_utils.cpp
src/spot_image_publisher.cpp
src/spot_image_publisher_node.cpp
src/spot_image_sources.cpp)
Expand Down
4 changes: 2 additions & 2 deletions spot_driver_cpp/include/spot_driver_cpp/kinematic_utils.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@

namespace spot_ros2::kinematic_utils {

using ::bosdyn::api::spot::InverseKinematicsRequest;
using spot_msgs::srv::GetInverseKinematicSolutions;

::bosdyn::api::spot::InverseKinematicsRequest to_proto(
const std::shared_ptr<GetInverseKinematicSolutions::Request> request);
InverseKinematicsRequest to_proto(const std::shared_ptr<GetInverseKinematicSolutions::Request> request);

// RosResponse toRos(const ProtoResponse& response);

Expand Down
3 changes: 1 addition & 2 deletions spot_driver_cpp/src/kinematic_utils.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,7 @@

namespace spot_ros2::kinematic_utils {

::bosdyn::api::spot::InverseKinematicsRequest to_proto(
const std::shared_ptr<GetInverseKinematicSolutions::Request> request) {
InverseKinematicsRequest to_proto(const std::shared_ptr<GetInverseKinematicSolutions::Request> request) {
return {};
}

Expand Down

0 comments on commit bdb2d2d

Please sign in to comment.