mirror of
https://github.com/MarlinFirmware/Marlin.git
synced 2025-01-29 13:19:53 +00:00
Resolve compiler complaint about memset volatile *
This commit is contained in:
parent
0b421e97c9
commit
ff35b11d08
1 changed files with 1 additions and 1 deletions
|
@ -1099,7 +1099,7 @@ void Stepper::init() {
|
|||
ENABLE_STEPPER_DRIVER_INTERRUPT();
|
||||
|
||||
#if ENABLED(ADVANCE) || ENABLED(LIN_ADVANCE)
|
||||
ZERO(e_steps);
|
||||
for (uint8_t i = 0; i < COUNT(e_steps); i++) e_steps[i] = 0;
|
||||
#if ENABLED(LIN_ADVANCE)
|
||||
ZERO(current_adv_steps);
|
||||
#endif
|
||||
|
|
Loading…
Reference in a new issue