diff --git a/Grbl_Esp32/Grbl_Esp32.ino b/Grbl_Esp32/Grbl_Esp32.ino index 9003c614..9c907733 100644 --- a/Grbl_Esp32/Grbl_Esp32.ino +++ b/Grbl_Esp32/Grbl_Esp32.ino @@ -21,7 +21,7 @@ #include "src/Grbl.h" void setup() { - init(); + grbl_init(); } void loop() { diff --git a/Grbl_Esp32/src/Grbl.cpp b/Grbl_Esp32/src/Grbl.cpp index 636fe6f0..109ef878 100644 --- a/Grbl_Esp32/src/Grbl.cpp +++ b/Grbl_Esp32/src/Grbl.cpp @@ -21,7 +21,7 @@ #include "Grbl.h" #include -void init() { +void grbl_init() { #ifdef USE_I2S_OUT i2s_out_init(); // The I2S out must be initialized before it can access the expanded GPIO port #endif diff --git a/Grbl_Esp32/src/Grbl.h b/Grbl_Esp32/src/Grbl.h index e7f88bd7..8218d263 100644 --- a/Grbl_Esp32/src/Grbl.h +++ b/Grbl_Esp32/src/Grbl.h @@ -23,7 +23,7 @@ // Grbl versioning system #define GRBL_VERSION "1.3a" -#define GRBL_VERSION_BUILD "20200812" +#define GRBL_VERSION_BUILD "20200813" //#include #include @@ -95,7 +95,7 @@ # include "I2SOut.h" #endif -void init(); +void grbl_init(); void run_once(); // Called if USE_MACHINE_INIT is defined