├── .gitignore ├── COPYING ├── Makefile ├── README.md ├── doc ├── 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.0d.txt │ └── commit_log_v1.1.txt ├── markdown │ ├── change_summary.md │ ├── commands.md │ ├── interface.md │ ├── jogging.md │ ├── laser_mode.md │ └── settings.md ├── media │ └── wall-plotter │ │ ├── kinematic-equations.png │ │ └── reference-diagram.png └── script │ ├── fit_nonlinear_spindle.py │ ├── simple_stream.py │ └── stream.py └── grbl ├── config.h ├── coolant_control.c ├── coolant_control.h ├── cpu_map.h ├── defaults.h ├── eeprom.c ├── eeprom.h ├── examples └── grblUpload │ ├── grblUpload.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 ├── sleep.c ├── sleep.h ├── spindle_control.c ├── spindle_control.h ├── stepper.c ├── stepper.h ├── system.c └── system.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/grbl-mega-wall-plotter/HEAD/.gitignore -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/grbl-mega-wall-plotter/HEAD/COPYING -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/grbl-mega-wall-plotter/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/grbl-mega-wall-plotter/HEAD/README.md -------------------------------------------------------------------------------- /doc/csv/alarm_codes_en_US.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/grbl-mega-wall-plotter/HEAD/doc/csv/alarm_codes_en_US.csv -------------------------------------------------------------------------------- /doc/csv/build_option_codes_en_US.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/grbl-mega-wall-plotter/HEAD/doc/csv/build_option_codes_en_US.csv -------------------------------------------------------------------------------- /doc/csv/error_codes_en_US.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/grbl-mega-wall-plotter/HEAD/doc/csv/error_codes_en_US.csv -------------------------------------------------------------------------------- /doc/csv/setting_codes_en_US.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/grbl-mega-wall-plotter/HEAD/doc/csv/setting_codes_en_US.csv -------------------------------------------------------------------------------- /doc/log/commit_log_v0.7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/grbl-mega-wall-plotter/HEAD/doc/log/commit_log_v0.7.txt -------------------------------------------------------------------------------- /doc/log/commit_log_v0.8c.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/grbl-mega-wall-plotter/HEAD/doc/log/commit_log_v0.8c.txt -------------------------------------------------------------------------------- /doc/log/commit_log_v0.9g.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/grbl-mega-wall-plotter/HEAD/doc/log/commit_log_v0.9g.txt -------------------------------------------------------------------------------- /doc/log/commit_log_v0.9i.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/grbl-mega-wall-plotter/HEAD/doc/log/commit_log_v0.9i.txt -------------------------------------------------------------------------------- /doc/log/commit_log_v0.9j.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/grbl-mega-wall-plotter/HEAD/doc/log/commit_log_v0.9j.txt -------------------------------------------------------------------------------- /doc/log/commit_log_v1.0b.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/grbl-mega-wall-plotter/HEAD/doc/log/commit_log_v1.0b.txt -------------------------------------------------------------------------------- /doc/log/commit_log_v1.0c.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/grbl-mega-wall-plotter/HEAD/doc/log/commit_log_v1.0c.txt -------------------------------------------------------------------------------- /doc/log/commit_log_v1.0d.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/grbl-mega-wall-plotter/HEAD/doc/log/commit_log_v1.0d.txt -------------------------------------------------------------------------------- /doc/log/commit_log_v1.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/grbl-mega-wall-plotter/HEAD/doc/log/commit_log_v1.1.txt -------------------------------------------------------------------------------- /doc/markdown/change_summary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/grbl-mega-wall-plotter/HEAD/doc/markdown/change_summary.md -------------------------------------------------------------------------------- /doc/markdown/commands.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/grbl-mega-wall-plotter/HEAD/doc/markdown/commands.md -------------------------------------------------------------------------------- /doc/markdown/interface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/grbl-mega-wall-plotter/HEAD/doc/markdown/interface.md -------------------------------------------------------------------------------- /doc/markdown/jogging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/grbl-mega-wall-plotter/HEAD/doc/markdown/jogging.md -------------------------------------------------------------------------------- /doc/markdown/laser_mode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/grbl-mega-wall-plotter/HEAD/doc/markdown/laser_mode.md -------------------------------------------------------------------------------- /doc/markdown/settings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/grbl-mega-wall-plotter/HEAD/doc/markdown/settings.md -------------------------------------------------------------------------------- /doc/media/wall-plotter/kinematic-equations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/grbl-mega-wall-plotter/HEAD/doc/media/wall-plotter/kinematic-equations.png -------------------------------------------------------------------------------- /doc/media/wall-plotter/reference-diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/grbl-mega-wall-plotter/HEAD/doc/media/wall-plotter/reference-diagram.png -------------------------------------------------------------------------------- /doc/script/fit_nonlinear_spindle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/grbl-mega-wall-plotter/HEAD/doc/script/fit_nonlinear_spindle.py -------------------------------------------------------------------------------- /doc/script/simple_stream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/grbl-mega-wall-plotter/HEAD/doc/script/simple_stream.py -------------------------------------------------------------------------------- /doc/script/stream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/grbl-mega-wall-plotter/HEAD/doc/script/stream.py -------------------------------------------------------------------------------- /grbl/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/grbl-mega-wall-plotter/HEAD/grbl/config.h -------------------------------------------------------------------------------- /grbl/coolant_control.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/grbl-mega-wall-plotter/HEAD/grbl/coolant_control.c -------------------------------------------------------------------------------- /grbl/coolant_control.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/grbl-mega-wall-plotter/HEAD/grbl/coolant_control.h -------------------------------------------------------------------------------- /grbl/cpu_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/grbl-mega-wall-plotter/HEAD/grbl/cpu_map.h -------------------------------------------------------------------------------- /grbl/defaults.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/grbl-mega-wall-plotter/HEAD/grbl/defaults.h -------------------------------------------------------------------------------- /grbl/eeprom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/grbl-mega-wall-plotter/HEAD/grbl/eeprom.c -------------------------------------------------------------------------------- /grbl/eeprom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/grbl-mega-wall-plotter/HEAD/grbl/eeprom.h -------------------------------------------------------------------------------- /grbl/examples/grblUpload/grblUpload.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/grbl-mega-wall-plotter/HEAD/grbl/examples/grblUpload/grblUpload.ino -------------------------------------------------------------------------------- /grbl/examples/grblUpload/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/grbl-mega-wall-plotter/HEAD/grbl/examples/grblUpload/license.txt -------------------------------------------------------------------------------- /grbl/gcode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/grbl-mega-wall-plotter/HEAD/grbl/gcode.c -------------------------------------------------------------------------------- /grbl/gcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/grbl-mega-wall-plotter/HEAD/grbl/gcode.h -------------------------------------------------------------------------------- /grbl/grbl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/grbl-mega-wall-plotter/HEAD/grbl/grbl.h -------------------------------------------------------------------------------- /grbl/jog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/grbl-mega-wall-plotter/HEAD/grbl/jog.c -------------------------------------------------------------------------------- /grbl/jog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/grbl-mega-wall-plotter/HEAD/grbl/jog.h -------------------------------------------------------------------------------- /grbl/limits.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/grbl-mega-wall-plotter/HEAD/grbl/limits.c -------------------------------------------------------------------------------- /grbl/limits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/grbl-mega-wall-plotter/HEAD/grbl/limits.h -------------------------------------------------------------------------------- /grbl/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/grbl-mega-wall-plotter/HEAD/grbl/main.c -------------------------------------------------------------------------------- /grbl/motion_control.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/grbl-mega-wall-plotter/HEAD/grbl/motion_control.c -------------------------------------------------------------------------------- /grbl/motion_control.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/grbl-mega-wall-plotter/HEAD/grbl/motion_control.h -------------------------------------------------------------------------------- /grbl/nuts_bolts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/grbl-mega-wall-plotter/HEAD/grbl/nuts_bolts.c -------------------------------------------------------------------------------- /grbl/nuts_bolts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/grbl-mega-wall-plotter/HEAD/grbl/nuts_bolts.h -------------------------------------------------------------------------------- /grbl/planner.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/grbl-mega-wall-plotter/HEAD/grbl/planner.c -------------------------------------------------------------------------------- /grbl/planner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/grbl-mega-wall-plotter/HEAD/grbl/planner.h -------------------------------------------------------------------------------- /grbl/print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/grbl-mega-wall-plotter/HEAD/grbl/print.c -------------------------------------------------------------------------------- /grbl/print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/grbl-mega-wall-plotter/HEAD/grbl/print.h -------------------------------------------------------------------------------- /grbl/probe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/grbl-mega-wall-plotter/HEAD/grbl/probe.c -------------------------------------------------------------------------------- /grbl/probe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/grbl-mega-wall-plotter/HEAD/grbl/probe.h -------------------------------------------------------------------------------- /grbl/protocol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/grbl-mega-wall-plotter/HEAD/grbl/protocol.c -------------------------------------------------------------------------------- /grbl/protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/grbl-mega-wall-plotter/HEAD/grbl/protocol.h -------------------------------------------------------------------------------- /grbl/report.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/grbl-mega-wall-plotter/HEAD/grbl/report.c -------------------------------------------------------------------------------- /grbl/report.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/grbl-mega-wall-plotter/HEAD/grbl/report.h -------------------------------------------------------------------------------- /grbl/serial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/grbl-mega-wall-plotter/HEAD/grbl/serial.c -------------------------------------------------------------------------------- /grbl/serial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/grbl-mega-wall-plotter/HEAD/grbl/serial.h -------------------------------------------------------------------------------- /grbl/settings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/grbl-mega-wall-plotter/HEAD/grbl/settings.c -------------------------------------------------------------------------------- /grbl/settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/grbl-mega-wall-plotter/HEAD/grbl/settings.h -------------------------------------------------------------------------------- /grbl/sleep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/grbl-mega-wall-plotter/HEAD/grbl/sleep.c -------------------------------------------------------------------------------- /grbl/sleep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/grbl-mega-wall-plotter/HEAD/grbl/sleep.h -------------------------------------------------------------------------------- /grbl/spindle_control.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/grbl-mega-wall-plotter/HEAD/grbl/spindle_control.c -------------------------------------------------------------------------------- /grbl/spindle_control.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/grbl-mega-wall-plotter/HEAD/grbl/spindle_control.h -------------------------------------------------------------------------------- /grbl/stepper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/grbl-mega-wall-plotter/HEAD/grbl/stepper.c -------------------------------------------------------------------------------- /grbl/stepper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/grbl-mega-wall-plotter/HEAD/grbl/stepper.h -------------------------------------------------------------------------------- /grbl/system.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/grbl-mega-wall-plotter/HEAD/grbl/system.c -------------------------------------------------------------------------------- /grbl/system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonwebb/grbl-mega-wall-plotter/HEAD/grbl/system.h --------------------------------------------------------------------------------