From 6c5c4b567187e5329d8a24f03603e52ba60d2ecf Mon Sep 17 00:00:00 2001 From: bdring Date: Fri, 16 Jul 2021 13:18:41 -0500 Subject: [PATCH] YL620_Fix (#941) * YL620_Fix Fix per ... https://github.com/bdring/Grbl_Esp32/issues/926#issuecomment-867885248 Added CNC_xPro machine def * Update Grbl.h * Delete CNC_xPRO_V5_XYYZ_PWM_NO.h --- Grbl_Esp32/src/Grbl.h | 2 +- Grbl_Esp32/src/SettingsDefinitions.cpp | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Grbl_Esp32/src/Grbl.h b/Grbl_Esp32/src/Grbl.h index f0dbd60d..e97bcf1d 100644 --- a/Grbl_Esp32/src/Grbl.h +++ b/Grbl_Esp32/src/Grbl.h @@ -22,7 +22,7 @@ // Grbl versioning system const char* const GRBL_VERSION = "1.3a"; -const char* const GRBL_VERSION_BUILD = "20210424"; +const char* const GRBL_VERSION_BUILD = "20210712"; //#include #include diff --git a/Grbl_Esp32/src/SettingsDefinitions.cpp b/Grbl_Esp32/src/SettingsDefinitions.cpp index b98da4e3..e400e129 100644 --- a/Grbl_Esp32/src/SettingsDefinitions.cpp +++ b/Grbl_Esp32/src/SettingsDefinitions.cpp @@ -73,6 +73,7 @@ enum_opt_t spindleTypes = { { "BESC", int8_t(SpindleType::BESC) }, { "10V", int8_t(SpindleType::_10V) }, { "H2A", int8_t(SpindleType::H2A) }, + { "YL620", int8_t(SpindleType::YL620) }, // clang-format on };