Merge pull request #29 from k-eex/Marlin_v1
Fix M201 not saving settings in all places, so the changes did not get written into EEPROM
This commit is contained in:
commit
f6fe7143e4
|
@ -989,7 +989,11 @@ FORCE_INLINE void process_commands()
|
||||||
case 201: // M201
|
case 201: // M201
|
||||||
for(int8_t i=0; i < NUM_AXIS; i++)
|
for(int8_t i=0; i < NUM_AXIS; i++)
|
||||||
{
|
{
|
||||||
if(code_seen(axis_codes[i])) axis_steps_per_sqr_second[i] = code_value() * axis_steps_per_unit[i];
|
if(code_seen(axis_codes[i]))
|
||||||
|
{
|
||||||
|
max_acceleration_units_per_sq_second[i] = code_value();
|
||||||
|
axis_steps_per_sqr_second[i] = code_value() * axis_steps_per_unit[i];
|
||||||
|
}
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
#if 0 // Not used for Sprinter/grbl gen6
|
#if 0 // Not used for Sprinter/grbl gen6
|
||||||
|
|
Loading…
Reference in a new issue