From 0a91700b0cac05424eb86c04d2f0b16d81756f66 Mon Sep 17 00:00:00 2001 From: Mitch Bradley Date: Thu, 10 Jun 2021 09:30:51 -1000 Subject: [PATCH] Changed null spindle name for clarity --- Grbl_Esp32/src/Spindles/NullSpindle.cpp | 2 +- Grbl_Esp32/src/Spindles/NullSpindle.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Grbl_Esp32/src/Spindles/NullSpindle.cpp b/Grbl_Esp32/src/Spindles/NullSpindle.cpp index e547926d..5acea59e 100644 --- a/Grbl_Esp32/src/Spindles/NullSpindle.cpp +++ b/Grbl_Esp32/src/Spindles/NullSpindle.cpp @@ -41,6 +41,6 @@ namespace Spindles { // Configuration registration namespace { - SpindleFactory::InstanceBuilder registration("Null"); + SpindleFactory::InstanceBuilder registration("NoSpindle"); } } diff --git a/Grbl_Esp32/src/Spindles/NullSpindle.h b/Grbl_Esp32/src/Spindles/NullSpindle.h index 1779c3a0..ab611e82 100644 --- a/Grbl_Esp32/src/Spindles/NullSpindle.h +++ b/Grbl_Esp32/src/Spindles/NullSpindle.h @@ -46,7 +46,7 @@ namespace Spindles { void group(Configuration::HandlerBase& handler) override {} // Name of the configurable. Must match the name registered in the cpp file. - const char* name() const override { return "Null"; } + const char* name() const override { return "NoSpindle"; } virtual ~Null() {} };