ROS Components for hexapod_robot
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

99 lines
4.0KB

  1. #include "hexapod_robot/hexapod_robot_hwi.hpp"
  2. #include "hardware_interface/types/hardware_interface_type_values.hpp"
  3. #include "rclcpp/rclcpp.hpp"
  4. #include <fcntl.h>
  5. namespace hexapod_robot {
  6. hardware_interface::CallbackReturn
  7. HexapodRobotHardwareInterface::on_init(const hardware_interface::HardwareInfo &info) {
  8. if (hardware_interface::SystemInterface::on_init(info) != hardware_interface::CallbackReturn::SUCCESS) {
  9. return hardware_interface::CallbackReturn::ERROR;
  10. }
  11. RCLCPP_INFO(rclcpp::get_logger("HexapodRobotHardwareInterface"), "on_init");
  12. for (const hardware_interface::ComponentInfo &joint: info_.joints) {
  13. joint_states_[joint.name]= 0.0;
  14. joint_commands_[joint.name] = 0.0;
  15. std::string i2c_address_parameter = joint.name + "_i2c_address";
  16. std::string channel_parameter = joint.name + "_channel";
  17. PWMOutput pwm_output;
  18. pwm_output.i2c_address = stoi(info_.hardware_parameters[i2c_address_parameter], nullptr, 0);
  19. pwm_output.channel = stoi(info_.hardware_parameters[channel_parameter], nullptr, 0);
  20. pca9685_controller_available_[pwm_output.i2c_address] = false;
  21. joint_pwm_mapping_[joint.name] = pwm_output;
  22. RCLCPP_INFO(rclcpp::get_logger("HexapodRobotHardwareInterface"), "%s mapped to 0x%02x:%d", joint.name.c_str(), pwm_output.i2c_address, pwm_output.channel);
  23. }
  24. for (const auto& [i2c_address, available]: pca9685_controller_available_) {
  25. RCLCPP_INFO(rclcpp::get_logger("HexapodRobotHardwareInterface"), "require PCA9685 at i2c 0x%02x.", i2c_address);
  26. }
  27. i2c_available_ = false;
  28. i2c_fd_ = open(info_.hardware_parameters["i2c_device"].c_str(), O_RDWR);
  29. if (i2c_fd_ < 0) {
  30. RCLCPP_WARN(rclcpp::get_logger("HexapodRobotHardwareInterface"), "Cannot open %s, continuing in dummy mode.", info_.hardware_parameters["i2c_device"].c_str());
  31. } else {
  32. i2c_available_ = true;
  33. }
  34. return hardware_interface::CallbackReturn::SUCCESS;
  35. }
  36. hardware_interface::CallbackReturn
  37. HexapodRobotHardwareInterface::on_activate(const rclcpp_lifecycle::State &) {
  38. RCLCPP_INFO(rclcpp::get_logger("HexapodRobotHardwareInterface"), "on_activate");
  39. return hardware_interface::CallbackReturn::SUCCESS;
  40. }
  41. hardware_interface::CallbackReturn
  42. HexapodRobotHardwareInterface::on_deactivate(const rclcpp_lifecycle::State &) {
  43. RCLCPP_INFO(rclcpp::get_logger("HexapodRobotHardwareInterface"), "on_deactivate");
  44. return hardware_interface::CallbackReturn::SUCCESS;
  45. }
  46. std::vector<hardware_interface::StateInterface>
  47. HexapodRobotHardwareInterface::export_state_interfaces() {
  48. std::vector<hardware_interface::StateInterface> state_interfaces;
  49. for (const hardware_interface::ComponentInfo &joint: info_.joints) {
  50. state_interfaces.emplace_back(hardware_interface::StateInterface(joint.name, hardware_interface::HW_IF_POSITION, &joint_states_[joint.name]));
  51. }
  52. return state_interfaces;
  53. }
  54. std::vector<hardware_interface::CommandInterface>
  55. HexapodRobotHardwareInterface::export_command_interfaces() {
  56. std::vector<hardware_interface::CommandInterface> command_interfaces;
  57. for (const hardware_interface::ComponentInfo &joint: info_.joints) {
  58. command_interfaces.emplace_back(hardware_interface::CommandInterface(joint.name, hardware_interface::HW_IF_POSITION, &joint_commands_[joint.name]));
  59. }
  60. return command_interfaces;
  61. }
  62. hardware_interface::return_type
  63. HexapodRobotHardwareInterface::read(const rclcpp::Time &, const rclcpp::Duration &) {
  64. for (const hardware_interface::ComponentInfo &joint: info_.joints) {
  65. joint_states_[joint.name]=joint_commands_[joint.name];
  66. }
  67. return hardware_interface::return_type::OK;
  68. }
  69. hardware_interface::return_type
  70. HexapodRobotHardwareInterface::write(const rclcpp::Time &, const rclcpp::Duration &) {
  71. return hardware_interface::return_type::OK;
  72. }
  73. } // namespace
  74. #include "pluginlib/class_list_macros.hpp"
  75. PLUGINLIB_EXPORT_CLASS(hexapod_robot::HexapodRobotHardwareInterface, hardware_interface::SystemInterface)