Closed kaixqu closed 5 years ago
In short, ros_control is a software framework leveraging parts of ROS to implement and manage controllers. When implementing ros_control for a robot, one can choose to do it using a realtime environment which is supported with all controllers provided by the ros_controllers repository.
The actual bread and butter of your realtime hardware interfacing should be part of your RobotHW implementation (also referred to as the Hardware Abstraction Layer) . For every robot this component is typically hosted in robot_name_hardware, (check out jackal_hardware or gazebo_ros_control). You won't find many of these openly available as it usually directly interacts with the hardware which manufacturers often prefer to keep private.
Orocos is the library PAL robotics is using to implement their RobotHW.
Thank you! I understand partially what you are saying. However, there are still some questions.
Thank you for your patience. :-)
Sorry for the late reply.
Think of the dashed-dotted lines not as hard-defined boundaries but overlapping points. With that mindset your two figures take the same shape.
The answers are:
Thanks for the help! :-)
My ultimate goal is to implement real-time control in ros in order to make biped balance. And, I am relatively new to real-time control.
In ROSCon-2014: ros_control: An overview, Adolfo explains the whole idea about ros_control. It is said that you can achieve real-time control using ros_control.
-> From my point of view, I can get IMU data in real-time and receive data and send commands to controller in real-time, then I shall be able to balance biped in real-time. Am I right?
2. However, I watched another roscon video - ROSCon-2017: How to design ROS-powered robots. He said that, "ros_control is component that running in orocos"
-> What does that suppose to mean?
-> Do we really need to install orocos in order to use ros_control?
3. Also, there are 2 repos related to ros_control.
-> Could anyone please explain their differences?
Thank you all in advance. :-) Kaixian QU