diff --git a/Grbl_Esp32/grbl.h b/Grbl_Esp32/grbl.h index 2adca58e..34cd3786 100644 --- a/Grbl_Esp32/grbl.h +++ b/Grbl_Esp32/grbl.h @@ -20,7 +20,7 @@ // Grbl versioning system #define GRBL_VERSION "1.1f" -#define GRBL_VERSION_BUILD "20190622" +#define GRBL_VERSION_BUILD "20190626" //#include #include diff --git a/Grbl_Esp32/stepper.cpp b/Grbl_Esp32/stepper.cpp index a395432b..31a53df6 100644 --- a/Grbl_Esp32/stepper.cpp +++ b/Grbl_Esp32/stepper.cpp @@ -419,10 +419,10 @@ void stepper_init() #endif #ifdef USE_RMT_STEPS - grbl_send(CLIENT_SERIAL, "[MSG:Using RMT Steps}\r\n"); + grbl_send(CLIENT_SERIAL, "[MSG:Using RMT Steps]\r\n"); initRMT(); #else - grbl_send(CLIENT_SERIAL, "[MSG:Using Timed Steps}\r\n"); + grbl_send(CLIENT_SERIAL, "[MSG:Using Timed Steps]\r\n"); // make the step pins outputs #ifdef X_STEP_PIN pinMode(X_STEP_PIN, OUTPUT);