Go to file
Sonny Jeon 24f1e0231e printFloat rounding fix. Affected settings. Recommend using new build.
printFloat was printing incorrectly and adding a value of 5 to every
float instead of 0.0005 when rounding to 3 decimal places. The printed
settings values do not accurately portray the actual stored value.
Recommend using newly posted build.
2012-01-31 21:09:47 -07:00
doc Merge chamnit/v0_7 with grbl/master 2012-01-17 20:50:53 -07:00
script Updated streaming scripts. Compiler compatibility for _delay_ms(). 2012-01-27 19:48:46 -07:00
.gitignore merged master 2011-01-31 19:42:56 +01:00
config.h Merge chamnit/v0_7 with grbl/master 2012-01-17 20:50:53 -07: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 Merge chamnit/v0_7 with grbl/master 2012-01-17 20:50:53 -07:00
gcode.h Merge chamnit/v0_7 with grbl/master 2012-01-17 20:50:53 -07:00
limits.c Merge chamnit/v0_7 with grbl/master 2012-01-17 20:50:53 -07:00
limits.h Merge chamnit/v0_7 with grbl/master 2012-01-17 20:50:53 -07:00
main.c Merge chamnit/v0_7 with grbl/master 2012-01-17 20:50:53 -07:00
Makefile Merge chamnit/v0_7 with grbl/master 2012-01-17 20:50:53 -07:00
motion_control.c Updated streaming scripts. Compiler compatibility for _delay_ms(). 2012-01-27 19:48:46 -07:00
motion_control.h Merge chamnit/v0_7 with grbl/master 2012-01-17 20:50:53 -07:00
nuts_bolts.c Updated streaming scripts. Compiler compatibility for _delay_ms(). 2012-01-27 19:48:46 -07:00
nuts_bolts.h Updated streaming scripts. Compiler compatibility for _delay_ms(). 2012-01-27 19:48:46 -07:00
planner.c Merge chamnit/v0_7 with grbl/master 2012-01-17 20:50:53 -07:00
planner.h Merge chamnit/v0_7 with grbl/master 2012-01-17 20:50:53 -07:00
print.c printFloat rounding fix. Affected settings. Recommend using new build. 2012-01-31 21:09:47 -07:00
print.h Merge chamnit/v0_7 with grbl/master 2012-01-17 20:50:53 -07:00
protocol.c Merge chamnit/v0_7 with grbl/master 2012-01-17 20:50:53 -07:00
protocol.h Merge chamnit/v0_7 with grbl/master 2012-01-17 20:50:53 -07:00
readme.textile Update readme.textile 2012-01-17 20:55:35 -07:00
serial.c Merge chamnit/v0_7 with grbl/master 2012-01-17 20:50:53 -07:00
serial.h Merge chamnit/v0_7 with grbl/master 2012-01-17 20:50:53 -07:00
settings.c Merge chamnit/v0_7 with grbl/master 2012-01-17 20:50:53 -07:00
settings.h Merge chamnit/v0_7 with grbl/master 2012-01-17 20:50:53 -07:00
spindle_control.c Merge chamnit/v0_7 with grbl/master 2012-01-17 20:50:53 -07: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 Merge chamnit/v0_7 with grbl/master 2012-01-17 20:50:53 -07:00
stepper.h Merge chamnit/v0_7 with grbl/master 2012-01-17 20:50:53 -07:00

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, 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 16 to 20 motions into the future and plan its velocities ahead to deliver smooth acceleration and jerk-free cornering.

*Changelog for v0.7 from v0.6:*
  - Significantly improved and optimized planner re-factoring.
  - New robust cornering algorithm, enabling smoother and faster motions.
  - Arc acceleration planning enabled by efficient vector transformation implementation.
  - Stepper subsystem re-factoring to help remove some motion issues from pre-v0.7 builds.
  - Increased dwell times.
  - G92 coordinate system offset support.
  - (Beta) Limit switch and homing cycle support.
  - Many other bug fixes and efficiency improvements.

*Important note for Atmega 168 users:* Going forward, support for Atmega 168 will be dropped due to its limited memory and speed. However, legacy Grbl v0.51 "in the branch called 'v0_51' is still available for use.

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