Moved initial stepper enable call to the core (from drivers)

This commit is contained in:
Terje Io
2022-07-11 07:56:02 +02:00
parent e8530a45ab
commit 651a2a903b
4 changed files with 21 additions and 3 deletions
+2 -2
View File
@@ -11,7 +11,7 @@ It has been written to complement grblHAL and has features such as proper keyboa
---
Latest build date is 20220703, see the [changelog](changelog.md) for details.
Latest build date is 20220710, see the [changelog](changelog.md) for details.
__NOTE:__ A settings reset will be performed on an update for versions earlier than 20211122. Backup and restore of settings is recommended.
__IMPORTANT!__ A new setting has been introduced for ganged axes motors in version 20211121.
I have only bench tested this for a couple of drivers, correct function should be verified after updating by those who have more than three motors configured.
@@ -83,4 +83,4 @@ List of Supported G-Codes:
Some [plugins](https://github.com/grblHAL/plugins) implements additional M-codes.
---
2022-07-03
2022-07-10
+16
View File
@@ -1,5 +1,21 @@
## grblHAL changelog
20220710:
Core:
* Moved initial stepper enable call to the core (from drivers).
Drivers:
* Most: updated for move of stepper enable initial stepper enable call to the core.
* STM32F4xx: Fix for missing code guard, updated my_machine.h options.
* STM32F7xx: Fix for incorrect `$pins` report for SPI pins.
---
20220709:
Core:
+1 -1
View File
@@ -34,7 +34,7 @@
#else
#define GRBL_VERSION "1.1f"
#endif
#define GRBL_BUILD 20220709
#define GRBL_BUILD 20220710
// The following symbols are set here if not already set by the compiler or in config.h
// Do NOT change here!
+2
View File
@@ -197,6 +197,8 @@ int grbl_enter (void)
protocol_enqueue_rt_command(report_driver_error);
}
hal.stepper.enable(settings.steppers.deenergize);
if(hal.spindle.set_state)
hal.spindle.set_state((spindle_state_t){0}, 0.0f);