Anyone out there written code for a microcontroller to run a 3 axis table from point to point with acceleration and velocity ramping?

Purpose: Convert a line in 3 dimensions into the pulse and direction signals necessary to make a 3 axis stepper motor driven CNC machine follow that line while maintaining predefined maximum acceleration and maximum velocity parameters.

Limitations: Must fit in a small microcontroller. e.g. PIC 16F690 with 4K of code space and 256 bytes of RAM.

I'm working on that code (starting to get good results) and would love to hear from others. My code is here: https://docs.google.com/document/d/1HapqposfsgFGLqbPkxlH6VZ2aw7lSAqmXmIXz959Sy4/edit?hl=en&pli=1#

link|improve this question
A very common way to solve this problem is to work out the motion planning on a PC either in advance or at leisure and figure out all your accelerations there, encode the result in a simple form you can drip feed to (or ship flashed into) a small microcontroller with low latency I/O and let that do the realtime work of actually generating the pulses. Back in the day when PCs had low latency true parallel ports, the same was sometimes done with a realtime task for execution and an ordinary user-mode program for motion planning – Chris Stratton Jan 18 '11 at 3:58
feedback

2 Answers

Best way to do that would be using a PID controller. I'd recommend studying a little bit of feedback systems and control. But if you're pressed for time, there are several PID algorithms readily available online, including for small PIC controllers.

link|improve this answer
Doesn't PID assume feedback? These are stepper motors... no encoders, no feedback. – James Newton Jan 9 '11 at 5:29
This answer proposes how to make a servo loop (which is not needed in an open loop stepper system) - but the question was about how to make a motion planner and sequencer, which are the component(s) that command the servo loops or steppers. – Chris Stratton Jan 18 '11 at 4:03
feedback

yes, stepper motors are only used in open loop systems due to their accuracy. They can step by step move accurately. One would use PID/closed loop only if you were using DC motors or the like.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.