MotionControllerInterface control frequency #9
Replies: 1 comment 2 replies
-
Hello @olivierp99 When you submit points to the MotionManager interface, they will be queued up in memory before being transmitted to the robot controller. There is no size limitation to this queue. You can queue them up as fast as your computer will allow. Once points are in the library's queue, the library spins up a background thread which manages transmission to the robot controller. As points are processed and the robot's buffer has free space, the library will dequeue your points and send to the robot. These will go into the motion-planner's buffer and a smooth trajectory will be plotted. If you are looking for more low-level control, I recommend either the MotoROS/MotoROS2 interface or a custom application developed using MotoPlus SDK. |
Beta Was this translation helpful? Give feedback.
-
Hello!
I was wondering what was the frequency for MotionManagerInterface? Can I stream at 125Hz? can I send all the points at once? what's the buffer capacity?
Great work by the way, the library looks great
Beta Was this translation helpful? Give feedback.
All reactions