Luigi Santivetti | 69972f9 | 2019-11-12 22:55:40 +0000 | [diff] [blame] | 1 | /*********************************************************************** |
| 2 | This sketch compiles and uploads Grbl to your 328p-based Arduino! |
| 3 | |
| 4 | To use: |
| 5 | - First make sure you have imported Grbl source code into your Arduino |
| 6 | IDE. There are details on our Github website on how to do this. |
| 7 | |
| 8 | - Select your Arduino Board and Serial Port in the Tools drop-down menu. |
| 9 | NOTE: Grbl only officially supports 328p-based Arduinos, like the Uno. |
| 10 | Using other boards will likely not work! |
| 11 | |
| 12 | - Then just click 'Upload'. That's it! |
| 13 | |
| 14 | For advanced users: |
| 15 | If you'd like to see what else Grbl can do, there are some additional |
| 16 | options for customization and features you can enable or disable. |
| 17 | Navigate your file system to where the Arduino IDE has stored the Grbl |
| 18 | source code files, open the 'config.h' file in your favorite text |
| 19 | editor. Inside are dozens of feature descriptions and #defines. Simply |
| 20 | comment or uncomment the #defines or alter their assigned values, save |
| 21 | your changes, and then click 'Upload' here. |
| 22 | |
| 23 | Copyright (c) 2015 Sungeun K. Jeon |
| 24 | Released under the MIT-license. See license.txt for details. |
| 25 | ***********************************************************************/ |
| 26 | |
| 27 | #include <grbl.h> |
| 28 | |
| 29 | // Do not alter this file! |