Go to file
Sonny Jeon 8a1720e1a1 Merge pull request #167 from tmpvar/simulator-mac
Fix sim makefile so it works on mac
2013-01-18 09:12:03 -08:00
doc No changes. Github commit bug. 2012-06-27 07:06:24 -06:00
script No changes. Github commit bug. 2012-06-27 07:06:24 -06:00
sim Fix sim makefile so it works on mac 2013-01-18 09:22:42 -07:00
.gitignore Acceleration independence installed. Initial re-work of planner for feedrate overrides. 2012-12-14 08:27:02 -07:00
config.h Minor changes. 2013-01-06 12:04:02 -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 Arc mm_per_segment removed, now in terms of tolerance. Stepper ramp counter variable type corrected. 2012-12-19 17:30:09 -07:00
eeprom.c G28/G30 post move bug fix. Altered file permissions. 2012-11-25 22:02:33 -07:00
eeprom.h G28/G30 post move bug fix. Altered file permissions. 2012-11-25 22:02:33 -07:00
gcode.c Replace some constants with N_AXIS. 2013-01-10 02:22:45 +04:00
gcode.h Replace some constants with N_AXIS. 2013-01-10 02:22:45 +04:00
limits.c Replace some constants with N_AXIS. 2013-01-10 02:22:45 +04:00
limits.h G28/G30 post move bug fix. Altered file permissions. 2012-11-25 22:02:33 -07:00
main.c Max velocity axes independence installed. Fixed intermittent slow trailing steps. Timer0 disable fix. 2012-12-16 16:23:24 -07:00
Makefile G28/G30 post move bug fix. Altered file permissions. 2012-11-25 22:02:33 -07:00
motion_control.c Updated README. Max step rate back at 30kHz. Acceleration minor bug fix. 2012-12-21 08:51:36 -07:00
motion_control.h G28/G30 post move bug fix. Altered file permissions. 2012-11-25 22:02:33 -07:00
nuts_bolts.c G28/G30 post move bug fix. Altered file permissions. 2012-11-25 22:02:33 -07:00
nuts_bolts.h New stepper algorithm. Optimized planner. 2012-12-08 15:00:58 -07:00
planner.c Replace some constants with N_AXIS. 2013-01-10 02:22:45 +04:00
planner.h Minor changes. 2013-01-06 12:04:02 -07:00
print.c G28/G30 post move bug fix. Altered file permissions. 2012-11-25 22:02:33 -07:00
print.h G28/G30 post move bug fix. Altered file permissions. 2012-11-25 22:02:33 -07:00
protocol.c G28/G30 post move bug fix. Altered file permissions. 2012-11-25 22:02:33 -07:00
protocol.h G28/G30 post move bug fix. Altered file permissions. 2012-11-25 22:02:33 -07:00
README.md Updated README. Max step rate back at 30kHz. Acceleration minor bug fix. 2012-12-21 08:51:36 -07:00
report.c Replace some constants with N_AXIS. 2013-01-10 02:22:45 +04:00
report.h Added Grbl state in status report. Removed switch support. 2012-11-15 21:53:11 -07:00
serial.c G28/G30 post move bug fix. Altered file permissions. 2012-11-25 22:02:33 -07:00
serial.h G28/G30 post move bug fix. Altered file permissions. 2012-11-25 22:02:33 -07:00
settings.c Replace some constants with N_AXIS. 2013-01-10 02:22:45 +04:00
settings.h Arc mm_per_segment removed, now in terms of tolerance. Stepper ramp counter variable type corrected. 2012-12-19 17:30:09 -07: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.c Minor changes. 2013-01-06 12:04:02 -07:00
stepper.h G28/G30 post move bug fix. Altered file permissions. 2012-11-25 22:02:33 -07:00

#Grbl - An embedded g-code interpreter and motion-controller for the Arduino/AVR328 microcontroller

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 the Pramod Ranade 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.
  • 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.
  • 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. Last item on the agenda.

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