mirror of
https://github.com/bdring/Grbl_Esp32.git
synced 2025-09-01 18:32:37 +02:00
Changed null spindle name for clarity
This commit is contained in:
@@ -41,6 +41,6 @@ namespace Spindles {
|
|||||||
|
|
||||||
// Configuration registration
|
// Configuration registration
|
||||||
namespace {
|
namespace {
|
||||||
SpindleFactory::InstanceBuilder<Null> registration("Null");
|
SpindleFactory::InstanceBuilder<Null> registration("NoSpindle");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -46,7 +46,7 @@ namespace Spindles {
|
|||||||
void group(Configuration::HandlerBase& handler) override {}
|
void group(Configuration::HandlerBase& handler) override {}
|
||||||
|
|
||||||
// Name of the configurable. Must match the name registered in the cpp file.
|
// 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() {}
|
virtual ~Null() {}
|
||||||
};
|
};
|
||||||
|
Reference in New Issue
Block a user