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:
@@ -41,6 +41,6 @@ namespace Spindles {
|
||||
|
||||
// Configuration registration
|
||||
namespace {
|
||||
SpindleFactory::InstanceBuilder<Null> registration("Null");
|
||||
SpindleFactory::InstanceBuilder<Null> registration("NoSpindle");
|
||||
}
|
||||
}
|
||||
|
@@ -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() {}
|
||||
};
|
||||
|
Reference in New Issue
Block a user