Skip to content

Commit

Permalink
Remove definition of movement interface because the concept is not us…
Browse files Browse the repository at this point in the history
…ed yet.

Concept of m
  • Loading branch information
destogl authored Apr 13, 2023
1 parent f939193 commit d7db070
Showing 1 changed file with 3 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,17 +21,13 @@ namespace hardware_interface
{
/// Constant defining position interface name
constexpr char HW_IF_POSITION[] = "position";
/// Constant defining velocity interface
/// Constant defining velocity interface name
constexpr char HW_IF_VELOCITY[] = "velocity";
/// Constant defining acceleration interface
/// Constant defining acceleration interface name
constexpr char HW_IF_ACCELERATION[] = "acceleration";
/// Constant defining effort interface
/// Constant defining effort interface name
constexpr char HW_IF_EFFORT[] = "effort";

// TODO(destogl): use "inline static const"-type when switched to C++17
/// Definition of standard names for movement interfaces
const std::vector<const char *> MOVEMENT_INTERFACES = {
HW_IF_POSITION, HW_IF_VELOCITY, HW_IF_ACCELERATION, HW_IF_EFFORT};
} // namespace hardware_interface

#endif // HARDWARE_INTERFACE__TYPES__HARDWARE_INTERFACE_TYPE_VALUES_HPP_

0 comments on commit d7db070

Please sign in to comment.