1
0
mirror of https://github.com/bdring/Grbl_Esp32.git synced 2025-09-01 02:21:46 +02:00

Changed _millis to _ms in spindle delay names

This commit is contained in:
Mitch Bradley
2021-05-26 09:02:25 -10:00
parent b0db24faf8
commit c195f0744b

View File

@@ -74,8 +74,8 @@ namespace Spindles {
}
void handle(Configuration::HandlerBase& handler) override {
handler.handle("spinup_delay_millis", _spinup_delay);
handler.handle("spindown_delay_millis", _spindown_delay);
handler.handle("spinup_delay_ms", _spinup_delay);
handler.handle("spindown_delay_ms", _spindown_delay);
}
// Virtual base classes require a virtual destructor.