在Ubuntu16.04下使用ur_modern_driver无法编译成功的解决方法

问题:在Ubuntu16.04下使用ur_modern_driver无法编译成功

Invoking "make -j4 -l4" failed
/home/hanieh/catkin_ws/src/ur_modern_driver/src/ur_hardware_interface.cpp:180:22: error: ‘const struct hardware_interface::ControllerInfo’ has no member named ‘hardware_interface’

源网址:https://github.com/ThomasTimm/ur_modern_driver/issues/58

将src/ur_hardware_interface.cpp中的

 if (controller_it->hardware_interface

全部改为

if (controller_it->type

猜你喜欢

转载自blog.csdn.net/weixin_39585934/article/details/81014816