├── .gitignore ├── COPYING ├── HEX ├── 328p20200210.hex ├── 328p20200307.hex ├── 328p20200512.hex ├── 328p20220608.hex ├── 328p20220609.hex ├── 328p20220801.hex └── 328p20240619.hex ├── Makefile ├── README.md ├── doc ├── architecture │ ├── Architecture Notes.rtf │ ├── Configure $I Hardware Values.txt │ ├── FW update concepts.ods │ └── grbl EEPROM space.ods ├── csv │ ├── alarm_codes_en_US.csv │ ├── build_option_codes_en_US.csv │ ├── error_codes_en_US.csv │ └── setting_codes_en_US.csv ├── log │ ├── commit_log_v0.7.txt │ ├── commit_log_v0.8c.txt │ ├── commit_log_v0.9g.txt │ ├── commit_log_v0.9i.txt │ ├── commit_log_v0.9j.txt │ ├── commit_log_v1.0b.txt │ ├── commit_log_v1.0c.txt │ └── commit_log_v1.1.txt ├── markdown │ ├── change_summary.md │ ├── commands.md │ ├── interface.md │ ├── jogging.md │ ├── laser_mode.md │ └── settings.md └── script │ ├── fit_nonlinear_spindle.py │ ├── simple_stream.py │ └── stream.py └── grblDD ├── config.h ├── cpu_map.h ├── defaults.h ├── eeprom.c ├── eeprom.h ├── examples ├── grblUpload │ ├── grblUpload.ino │ └── license.txt └── grblWrite_BuildInfo │ ├── grblWrite_BuildInfo.ino │ └── license.txt ├── gcode.c ├── gcode.h ├── grbl.h ├── jog.c ├── jog.h ├── limits.c ├── limits.h ├── main.c ├── motion_control.c ├── motion_control.h ├── nuts_bolts.c ├── nuts_bolts.h ├── planner.c ├── planner.h ├── print.c ├── print.h ├── probe.c ├── probe.h ├── protocol.c ├── protocol.h ├── report.c ├── report.h ├── serial.c ├── serial.h ├── settings.c ├── settings.h ├── spindle_control.c ├── spindle_control.h ├── stepper.c ├── stepper.h ├── system.c └── system.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defdist/grbl1v1g_GG3_GrBLDC3v0/HEAD/.gitignore -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defdist/grbl1v1g_GG3_GrBLDC3v0/HEAD/COPYING -------------------------------------------------------------------------------- /HEX/328p20200210.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defdist/grbl1v1g_GG3_GrBLDC3v0/HEAD/HEX/328p20200210.hex -------------------------------------------------------------------------------- /HEX/328p20200307.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defdist/grbl1v1g_GG3_GrBLDC3v0/HEAD/HEX/328p20200307.hex -------------------------------------------------------------------------------- /HEX/328p20200512.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defdist/grbl1v1g_GG3_GrBLDC3v0/HEAD/HEX/328p20200512.hex -------------------------------------------------------------------------------- /HEX/328p20220608.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defdist/grbl1v1g_GG3_GrBLDC3v0/HEAD/HEX/328p20220608.hex -------------------------------------------------------------------------------- /HEX/328p20220609.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defdist/grbl1v1g_GG3_GrBLDC3v0/HEAD/HEX/328p20220609.hex -------------------------------------------------------------------------------- /HEX/328p20220801.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defdist/grbl1v1g_GG3_GrBLDC3v0/HEAD/HEX/328p20220801.hex -------------------------------------------------------------------------------- /HEX/328p20240619.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defdist/grbl1v1g_GG3_GrBLDC3v0/HEAD/HEX/328p20240619.hex -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defdist/grbl1v1g_GG3_GrBLDC3v0/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defdist/grbl1v1g_GG3_GrBLDC3v0/HEAD/README.md -------------------------------------------------------------------------------- /doc/architecture/Architecture Notes.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defdist/grbl1v1g_GG3_GrBLDC3v0/HEAD/doc/architecture/Architecture Notes.rtf -------------------------------------------------------------------------------- /doc/architecture/Configure $I Hardware Values.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defdist/grbl1v1g_GG3_GrBLDC3v0/HEAD/doc/architecture/Configure $I Hardware Values.txt -------------------------------------------------------------------------------- /doc/architecture/FW update concepts.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defdist/grbl1v1g_GG3_GrBLDC3v0/HEAD/doc/architecture/FW update concepts.ods -------------------------------------------------------------------------------- /doc/architecture/grbl EEPROM space.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defdist/grbl1v1g_GG3_GrBLDC3v0/HEAD/doc/architecture/grbl EEPROM space.ods -------------------------------------------------------------------------------- /doc/csv/alarm_codes_en_US.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defdist/grbl1v1g_GG3_GrBLDC3v0/HEAD/doc/csv/alarm_codes_en_US.csv -------------------------------------------------------------------------------- /doc/csv/build_option_codes_en_US.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defdist/grbl1v1g_GG3_GrBLDC3v0/HEAD/doc/csv/build_option_codes_en_US.csv -------------------------------------------------------------------------------- /doc/csv/error_codes_en_US.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defdist/grbl1v1g_GG3_GrBLDC3v0/HEAD/doc/csv/error_codes_en_US.csv -------------------------------------------------------------------------------- /doc/csv/setting_codes_en_US.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defdist/grbl1v1g_GG3_GrBLDC3v0/HEAD/doc/csv/setting_codes_en_US.csv -------------------------------------------------------------------------------- /doc/log/commit_log_v0.7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defdist/grbl1v1g_GG3_GrBLDC3v0/HEAD/doc/log/commit_log_v0.7.txt -------------------------------------------------------------------------------- /doc/log/commit_log_v0.8c.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defdist/grbl1v1g_GG3_GrBLDC3v0/HEAD/doc/log/commit_log_v0.8c.txt -------------------------------------------------------------------------------- /doc/log/commit_log_v0.9g.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defdist/grbl1v1g_GG3_GrBLDC3v0/HEAD/doc/log/commit_log_v0.9g.txt -------------------------------------------------------------------------------- /doc/log/commit_log_v0.9i.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defdist/grbl1v1g_GG3_GrBLDC3v0/HEAD/doc/log/commit_log_v0.9i.txt -------------------------------------------------------------------------------- /doc/log/commit_log_v0.9j.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defdist/grbl1v1g_GG3_GrBLDC3v0/HEAD/doc/log/commit_log_v0.9j.txt -------------------------------------------------------------------------------- /doc/log/commit_log_v1.0b.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defdist/grbl1v1g_GG3_GrBLDC3v0/HEAD/doc/log/commit_log_v1.0b.txt -------------------------------------------------------------------------------- /doc/log/commit_log_v1.0c.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defdist/grbl1v1g_GG3_GrBLDC3v0/HEAD/doc/log/commit_log_v1.0c.txt -------------------------------------------------------------------------------- /doc/log/commit_log_v1.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defdist/grbl1v1g_GG3_GrBLDC3v0/HEAD/doc/log/commit_log_v1.1.txt -------------------------------------------------------------------------------- /doc/markdown/change_summary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defdist/grbl1v1g_GG3_GrBLDC3v0/HEAD/doc/markdown/change_summary.md -------------------------------------------------------------------------------- /doc/markdown/commands.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defdist/grbl1v1g_GG3_GrBLDC3v0/HEAD/doc/markdown/commands.md -------------------------------------------------------------------------------- /doc/markdown/interface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defdist/grbl1v1g_GG3_GrBLDC3v0/HEAD/doc/markdown/interface.md -------------------------------------------------------------------------------- /doc/markdown/jogging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defdist/grbl1v1g_GG3_GrBLDC3v0/HEAD/doc/markdown/jogging.md -------------------------------------------------------------------------------- /doc/markdown/laser_mode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defdist/grbl1v1g_GG3_GrBLDC3v0/HEAD/doc/markdown/laser_mode.md -------------------------------------------------------------------------------- /doc/markdown/settings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defdist/grbl1v1g_GG3_GrBLDC3v0/HEAD/doc/markdown/settings.md -------------------------------------------------------------------------------- /doc/script/fit_nonlinear_spindle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defdist/grbl1v1g_GG3_GrBLDC3v0/HEAD/doc/script/fit_nonlinear_spindle.py -------------------------------------------------------------------------------- /doc/script/simple_stream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defdist/grbl1v1g_GG3_GrBLDC3v0/HEAD/doc/script/simple_stream.py -------------------------------------------------------------------------------- /doc/script/stream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defdist/grbl1v1g_GG3_GrBLDC3v0/HEAD/doc/script/stream.py -------------------------------------------------------------------------------- /grblDD/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defdist/grbl1v1g_GG3_GrBLDC3v0/HEAD/grblDD/config.h -------------------------------------------------------------------------------- /grblDD/cpu_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defdist/grbl1v1g_GG3_GrBLDC3v0/HEAD/grblDD/cpu_map.h -------------------------------------------------------------------------------- /grblDD/defaults.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defdist/grbl1v1g_GG3_GrBLDC3v0/HEAD/grblDD/defaults.h -------------------------------------------------------------------------------- /grblDD/eeprom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defdist/grbl1v1g_GG3_GrBLDC3v0/HEAD/grblDD/eeprom.c -------------------------------------------------------------------------------- /grblDD/eeprom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defdist/grbl1v1g_GG3_GrBLDC3v0/HEAD/grblDD/eeprom.h -------------------------------------------------------------------------------- /grblDD/examples/grblUpload/grblUpload.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defdist/grbl1v1g_GG3_GrBLDC3v0/HEAD/grblDD/examples/grblUpload/grblUpload.ino -------------------------------------------------------------------------------- /grblDD/examples/grblUpload/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defdist/grbl1v1g_GG3_GrBLDC3v0/HEAD/grblDD/examples/grblUpload/license.txt -------------------------------------------------------------------------------- /grblDD/examples/grblWrite_BuildInfo/grblWrite_BuildInfo.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defdist/grbl1v1g_GG3_GrBLDC3v0/HEAD/grblDD/examples/grblWrite_BuildInfo/grblWrite_BuildInfo.ino -------------------------------------------------------------------------------- /grblDD/examples/grblWrite_BuildInfo/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defdist/grbl1v1g_GG3_GrBLDC3v0/HEAD/grblDD/examples/grblWrite_BuildInfo/license.txt -------------------------------------------------------------------------------- /grblDD/gcode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defdist/grbl1v1g_GG3_GrBLDC3v0/HEAD/grblDD/gcode.c -------------------------------------------------------------------------------- /grblDD/gcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defdist/grbl1v1g_GG3_GrBLDC3v0/HEAD/grblDD/gcode.h -------------------------------------------------------------------------------- /grblDD/grbl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defdist/grbl1v1g_GG3_GrBLDC3v0/HEAD/grblDD/grbl.h -------------------------------------------------------------------------------- /grblDD/jog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defdist/grbl1v1g_GG3_GrBLDC3v0/HEAD/grblDD/jog.c -------------------------------------------------------------------------------- /grblDD/jog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defdist/grbl1v1g_GG3_GrBLDC3v0/HEAD/grblDD/jog.h -------------------------------------------------------------------------------- /grblDD/limits.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defdist/grbl1v1g_GG3_GrBLDC3v0/HEAD/grblDD/limits.c -------------------------------------------------------------------------------- /grblDD/limits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defdist/grbl1v1g_GG3_GrBLDC3v0/HEAD/grblDD/limits.h -------------------------------------------------------------------------------- /grblDD/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defdist/grbl1v1g_GG3_GrBLDC3v0/HEAD/grblDD/main.c -------------------------------------------------------------------------------- /grblDD/motion_control.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defdist/grbl1v1g_GG3_GrBLDC3v0/HEAD/grblDD/motion_control.c -------------------------------------------------------------------------------- /grblDD/motion_control.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defdist/grbl1v1g_GG3_GrBLDC3v0/HEAD/grblDD/motion_control.h -------------------------------------------------------------------------------- /grblDD/nuts_bolts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defdist/grbl1v1g_GG3_GrBLDC3v0/HEAD/grblDD/nuts_bolts.c -------------------------------------------------------------------------------- /grblDD/nuts_bolts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defdist/grbl1v1g_GG3_GrBLDC3v0/HEAD/grblDD/nuts_bolts.h -------------------------------------------------------------------------------- /grblDD/planner.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defdist/grbl1v1g_GG3_GrBLDC3v0/HEAD/grblDD/planner.c -------------------------------------------------------------------------------- /grblDD/planner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defdist/grbl1v1g_GG3_GrBLDC3v0/HEAD/grblDD/planner.h -------------------------------------------------------------------------------- /grblDD/print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defdist/grbl1v1g_GG3_GrBLDC3v0/HEAD/grblDD/print.c -------------------------------------------------------------------------------- /grblDD/print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defdist/grbl1v1g_GG3_GrBLDC3v0/HEAD/grblDD/print.h -------------------------------------------------------------------------------- /grblDD/probe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defdist/grbl1v1g_GG3_GrBLDC3v0/HEAD/grblDD/probe.c -------------------------------------------------------------------------------- /grblDD/probe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defdist/grbl1v1g_GG3_GrBLDC3v0/HEAD/grblDD/probe.h -------------------------------------------------------------------------------- /grblDD/protocol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defdist/grbl1v1g_GG3_GrBLDC3v0/HEAD/grblDD/protocol.c -------------------------------------------------------------------------------- /grblDD/protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defdist/grbl1v1g_GG3_GrBLDC3v0/HEAD/grblDD/protocol.h -------------------------------------------------------------------------------- /grblDD/report.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defdist/grbl1v1g_GG3_GrBLDC3v0/HEAD/grblDD/report.c -------------------------------------------------------------------------------- /grblDD/report.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defdist/grbl1v1g_GG3_GrBLDC3v0/HEAD/grblDD/report.h -------------------------------------------------------------------------------- /grblDD/serial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defdist/grbl1v1g_GG3_GrBLDC3v0/HEAD/grblDD/serial.c -------------------------------------------------------------------------------- /grblDD/serial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defdist/grbl1v1g_GG3_GrBLDC3v0/HEAD/grblDD/serial.h -------------------------------------------------------------------------------- /grblDD/settings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defdist/grbl1v1g_GG3_GrBLDC3v0/HEAD/grblDD/settings.c -------------------------------------------------------------------------------- /grblDD/settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defdist/grbl1v1g_GG3_GrBLDC3v0/HEAD/grblDD/settings.h -------------------------------------------------------------------------------- /grblDD/spindle_control.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defdist/grbl1v1g_GG3_GrBLDC3v0/HEAD/grblDD/spindle_control.c -------------------------------------------------------------------------------- /grblDD/spindle_control.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defdist/grbl1v1g_GG3_GrBLDC3v0/HEAD/grblDD/spindle_control.h -------------------------------------------------------------------------------- /grblDD/stepper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defdist/grbl1v1g_GG3_GrBLDC3v0/HEAD/grblDD/stepper.c -------------------------------------------------------------------------------- /grblDD/stepper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defdist/grbl1v1g_GG3_GrBLDC3v0/HEAD/grblDD/stepper.h -------------------------------------------------------------------------------- /grblDD/system.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defdist/grbl1v1g_GG3_GrBLDC3v0/HEAD/grblDD/system.c -------------------------------------------------------------------------------- /grblDD/system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Defdist/grbl1v1g_GG3_GrBLDC3v0/HEAD/grblDD/system.h --------------------------------------------------------------------------------