Go to file
Sonny Jeon b36e30de2e Yet another major stepper algorithm and planner overhaul.
- Overhauled the stepper algorithm and planner again. This time
concentrating on the decoupling of the stepper ISR completely. It is
now dumb, relying on the segment generator to provide the number of
steps to execute and how fast it needs to go. This freed up lots of
memory as well because it made a lot tracked variables obsolete.

- The segment generator now computes the velocity profile of the
executing planner block on the fly in floating point math, instead of
allowing the stepper algorithm to govern accelerations in the previous
code. What this accomplishes is the ability and framework to (somewhat)
easily install a different physics model for generating a velocity
profile, i.e. s-curves.

- Made some more planner enhancements and increased efficiency a bit.

- The changes also did not increase the compiled size of Grbl, but
decreased it slightly as well.

- Cleaned up a lot of the commenting.

- Still much to do, but this push works and still is missing feedholds
(coming next.)
2013-11-22 17:35:58 -07:00
archive Yet another major stepper algorithm and planner overhaul. 2013-11-22 17:35:58 -07:00
doc Merge branch 'dev_2' into dev 2013-10-29 19:10:39 -06:00
script No changes. Github commit bug. 2012-06-27 07:06:24 -06:00
sim changed atomic access for updating the acceleration profile 2013-02-22 16:36:27 +01:00
.gitignore Acceleration independence installed. Initial re-work of planner for feedrate overrides. 2012-12-14 08:27:02 -07:00
config.h Yet another major stepper algorithm and planner overhaul. 2013-11-22 17:35:58 -07:00
coolant_control.c Minor prescalar optimization. Changed up some defines. 2012-09-21 17:55:02 -06:00
coolant_control.h Added coolant control (M7*, M8, M9). Mist control can be enabled via config.h. 2012-09-21 11:14:13 -06:00
COPYING G28/G30 post move bug fix. Altered file permissions. 2012-11-25 22:02:33 -07:00
defaults.h Merge branch 'dev_2' into dev 2013-10-29 19:10:39 -06:00
eeprom.c G28/G30 post move bug fix. Altered file permissions. 2012-11-25 22:02:33 -07:00
eeprom.h Merge branch 'dev_2' into dev 2013-10-29 19:10:39 -06:00
gcode.c Merge branch 'dev_2' into dev 2013-10-29 19:10:39 -06:00
gcode.h Merge branch 'dev_2' into dev 2013-10-29 19:10:39 -06:00
limits.c Merge fixes. 2013-10-29 19:28:44 -06:00
limits.h Merge branch 'dev_2' into dev 2013-10-29 19:10:39 -06:00
main.c Merge branch 'dev_2' into dev 2013-10-29 19:10:39 -06:00
Makefile Another merge fix. 2013-10-29 19:43:40 -06:00
motion_control.c Merge fixes. 2013-10-29 19:28:44 -06:00
motion_control.h Merge branch 'dev_2' into dev 2013-10-29 19:10:39 -06:00
nuts_bolts.c Merge branch 'dev_2' into dev 2013-10-29 19:10:39 -06:00
nuts_bolts.h Merge branch 'dev_2' into dev 2013-10-29 19:10:39 -06:00
pin_map.h Merge branch 'dev_2' into dev 2013-10-29 19:10:39 -06:00
planner.c Yet another major stepper algorithm and planner overhaul. 2013-11-22 17:35:58 -07:00
planner.h Yet another major stepper algorithm and planner overhaul. 2013-11-22 17:35:58 -07:00
print.c Merge branch 'dev_2' into dev 2013-10-29 19:10:39 -06:00
print.h Merge branch 'dev_2' into dev 2013-10-29 19:10:39 -06:00
protocol.c Merge branch 'dev_2' into dev 2013-10-29 19:10:39 -06:00
protocol.h Merge branch 'dev_2' into dev 2013-10-29 19:10:39 -06:00
README.md Merge branch 'dev_2' into dev 2013-10-29 19:10:39 -06:00
report.c Merge fixes. 2013-10-29 19:28:44 -06:00
report.h Merge fixes. 2013-10-29 19:28:44 -06:00
serial.c Merge branch 'dev_2' into dev 2013-10-29 19:10:39 -06:00
serial.h G28/G30 post move bug fix. Altered file permissions. 2012-11-25 22:02:33 -07:00
settings.c Merge branch 'dev_2' into dev 2013-10-29 19:10:39 -06:00
settings.h Merge branch 'dev_2' into dev 2013-10-29 19:10:39 -06:00
spindle_control.c G28/G30 post move bug fix. Altered file permissions. 2012-11-25 22:02:33 -07:00
spindle_control.h G28/G30 post move bug fix. Altered file permissions. 2012-11-25 22:02:33 -07:00
stepper_test.c Yet another major stepper algorithm and planner overhaul. 2013-11-22 17:35:58 -07:00
stepper.c Yet another major stepper algorithm and planner overhaul. 2013-11-22 17:35:58 -07:00
stepper.h Yet another major stepper algorithm and planner overhaul. 2013-11-22 17:35:58 -07:00

#Grbl

This branch serves only as a developmental platform for working on new ideas that may eventually be installed into Grbl's edge branch. Please do not use as there is no guarantee this code base is up-to-date or working.


Grbl is a no-compromise, high performance, low cost alternative to parallel-port-based motion control for CNC milling. It will run on a vanilla Arduino (Duemillanove/Uno) as long as it sports an Atmega 328.

The controller is written in highly optimized C utilizing every clever feature of the AVR-chips to achieve precise timing and asynchronous operation. It is able to m aintain more than 30kHz of stable, jitter free control pulses.

It accepts standards-compliant G-code and has been tested with the output of several CAM tools with no problems. Arcs, circles and helical motion are fully supported, as well as, other basic functional g-code commands. Functions and variables are not currently supported, but may be included in future releases in a form of a pre-processor.

Grbl includes full acceleration management with look ahead. That means the controller will look up to 18 motions into the future and plan its velocities ahead to deliver smooth acceleration and jerk-free cornering.

##Changelog for v0.9 from v0.8

  • ALPHA status: Under heavy development.
  • New stepper algorithm: Based on an inverse time algorithm, but modified to ensure steps are executed exactly. This algorithm performs a constant timer tick and has a hard limit of 30kHz maximum step frequency. It is also highly tuneable and should be very easy to port to other microcontroller architectures. Overall, a much better, smoother stepper algorithm with the capability of very high speeds.
  • Planner optimizations: Multiple changes to increase planner execution speed and removed redundant variables.
  • Acceleration independence: Each axes may be defined with different acceleration parameters and Grbl will automagically calculate the maximum acceleration through a path depending on the direction traveled. This is very useful for machine that have very different axes properties, like the ShapeOko z-axis.
  • Maximum velocity independence: As with acceleration, the maximum velocity of individual axes may be defined. All seek/rapids motions will move at these maximum rates, but never exceed any one axes. So, when two or more axes move, the limiting axis will move at its maximum rate, while the other axes are scaled down.
  • Significantly improved arc performance: Arcs are now defined in terms of chordal tolerance, rather than segment length. Chordal tolerance will automatically scale all arc line segments depending on arc radius, such that the error does not exceed the tolerance value (default: 0.005 mm.) So, for larger radii arcs, Grbl can move faster through them, because the segments are always longer and the planner has more distance to plan with.
  • Soft limits: Checks if any motion command exceeds workspace limits. Alarms out when found. Another safety feature, but, unlike hard limits, position does not get lost, as it forces a feed hold before erroring out.
  • New Grbl SIMULATOR by @jgeisler: A completely independent wrapper of the Grbl main source code that may be compiled as an executable on a computer. No Arduino required. Simply simulates the responses of Grbl as if it was on an Arduino. May be used for many things: checking out how Grbl works, pre-process moves for GUI graphics, debugging of new features, etc. Much left to do, but potentially very powerful, as the dummy AVR variables can be written to output anything you need.
  • Homing routine updated: Sets workspace volume in all negative space regardless of limit switch position. Common on pro CNCs. Also reduces soft limits CPU overhead.
  • Feedrate overrides: In the works, but planner has begun to be re-factored for this feature.
  • Jogging controls: Methodology needs to be to figured out first. Could be dropped due to flash space concerns. Last item on the agenda.

The project was initially inspired by the Arduino GCode Interpreter by Mike Ellery