From 9879fdfd5b0dfa054a9869f198eb3815373b679e Mon Sep 17 00:00:00 2001 From: Unknown Date: Wed, 26 Jun 2019 11:44:07 +0200 Subject: [PATCH 1/2] fixed typo in messages } instead of ] at the end of the message --- Grbl_Esp32/stepper.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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); From 40b7e623521081a9c92f42c07db995280254931a Mon Sep 17 00:00:00 2001 From: Unknown Date: Wed, 26 Jun 2019 18:11:44 +0200 Subject: [PATCH 2/2] update build date --- Grbl_Esp32/grbl.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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