1
0
mirror of https://github.com/bdring/Grbl_Esp32.git synced 2025-08-31 10:01:48 +02:00

Changed null spindle name for clarity

This commit is contained in:
Mitch Bradley
2021-06-10 09:30:51 -10:00
parent 1ef8cd0e09
commit 0a91700b0c
2 changed files with 2 additions and 2 deletions

View File

@@ -41,6 +41,6 @@ namespace Spindles {
// Configuration registration
namespace {
SpindleFactory::InstanceBuilder<Null> registration("Null");
SpindleFactory::InstanceBuilder<Null> registration("NoSpindle");
}
}

View File

@@ -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() {}
};