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

Fixed homing_init_lock; limits_init() needed to be called first.

This commit is contained in:
Mitch Bradley
2021-07-07 19:03:28 -10:00
parent b7750acef4
commit 0191e8ca0c

View File

@@ -111,6 +111,8 @@ void grbl_init() {
sys.state = State::Idle; sys.state = State::Idle;
} }
limits_init();
// Check for power-up and set system alarm if homing is enabled to force homing cycle // Check for power-up and set system alarm if homing is enabled to force homing cycle
// by setting Grbl's alarm state. Alarm locks out all g-code commands, including the // by setting Grbl's alarm state. Alarm locks out all g-code commands, including the
// startup scripts, but allows access to settings and internal commands. Only a homing // startup scripts, but allows access to settings and internal commands. Only a homing
@@ -128,7 +130,6 @@ void grbl_init() {
Spindles::Spindle::switchSpindle(0, config->_spindles, spindle); Spindles::Spindle::switchSpindle(0, config->_spindles, spindle);
config->_coolant->init(); config->_coolant->init();
limits_init();
config->_probe->init(); config->_probe->init();
} }