Go to file
2011-07-04 13:07:32 -05:00
doc added som documentation for other contributors 2011-02-11 23:54:13 +01:00
script gcode streaming works 2011-02-17 10:14:27 +01:00
.gitignore merged master 2011-01-31 19:42:56 +01:00
config.h increased default acceleration ticks per second 2011-02-17 09:42:44 +01:00
COPYING renamed file 2009-01-26 10:51:02 +01:00
eeprom.c formatting 2011-01-31 23:04:39 +01:00
eeprom.h Added runtime configurable global settings with eeprom persitence 2010-03-07 20:29:18 +01:00
gcode.c acceleration-Grbl now works with atmega 168 by disabling arc motion 2011-02-20 22:00:12 +01:00
gcode.h added error messages and dropped echoing of command input 2011-02-05 00:39:34 +01:00
main.c acceleration-Grbl now works with atmega 168 by disabling arc motion 2011-02-20 22:00:12 +01:00
Makefile refactored stepper_plan -> planner (untested) 2011-02-11 00:34:53 +01:00
motion_control.c acceleration-Grbl now works with atmega 168 by disabling arc motion 2011-02-20 22:00:12 +01:00
motion_control.h acceleration-Grbl now works with atmega 168 by disabling arc motion 2011-02-20 22:00:12 +01:00
nuts_bolts.h slimmed down nuts_bolts 2011-02-11 23:53:58 +01:00
planner.c fixed null pointer dereference in planner_forward_pass_kernel 2011-07-04 13:05:20 -05:00
planner.h a new (slightly inelegant) stab at eliminating the slow tail problem 2011-02-16 22:58:53 +01:00
readme.textile added another note for existing users 2011-02-17 20:03:29 +01:00
serial_protocol.c gcode streaming works 2011-02-17 10:14:27 +01:00
serial_protocol.h merged master 2011-01-31 19:42:56 +01:00
settings.c replaced use of magical numbers for axis reference with constants 2011-02-06 23:27:04 +01:00
settings.h renamed public methods of settings module to include module name 2011-02-05 01:00:41 +01:00
spindle_control.c refactored compile time settings back into a new file called config.h 2011-02-05 00:55:37 +01:00
spindle_control.h refactored block buffer into separate module motion_plan pending the addition of the actual look ahead planner 2011-01-14 16:45:18 +01:00
stepper.c a new (slightly inelegant) stab at eliminating the slow tail problem 2011-02-16 22:58:53 +01:00
stepper.h formatting + moved current position getter to planner 2011-02-11 00:44:18 +01:00
wiring_serial.c fix sign of fractional part in printFloat 2011-07-04 13:07:32 -05:00
wiring_serial.h moved all strings to pgm-memory 2010-03-07 23:10:41 +01:00

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

h1. 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 maintain 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 - but no support for tool offsets, functions or variables as these are apocryphal and fell into disuse after humans left G-code authoring to machines some time in the 80s.

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

*Important note for Atmega 168 users:* Grbl used to be compatible with both the older Ardunios running atmega 168 and the newer with 328p. This had to go, as I was unable to fit the acceleration management into the 16k code space of the 168. If you want to run Grbl on an 168 I am still maintaining Grbl 0.51 "in the branch called 'v0_51'":https://github.com/simen/grbl/tree/v0_51.

*Note for users upgrading from 0.51 to 0.6:* The new version has new and improved default pin-out. If nothing works when you upgrade, that is because the pulse trains are coming from the wrong pins. This is a simple matter of editing config.h  the whole legacy pin assignment is there for you to uncomment.

_The project was initially inspired by the Arduino GCode Interpreter by Mike Ellery_