reprocess patch so I don't have 1200 lines of whitespace changes to review
This commit is contained in:
parent
b432f6c5b9
commit
f449b06bb2
|
|
@ -7447,6 +7447,20 @@ Sigma_Exit:
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
#ifdef FILAMENT_SENSOR
|
||||||
|
case 405: // M405 Enable Filament Sensor
|
||||||
|
{
|
||||||
|
fsensor_enable();
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
|
||||||
|
case 406: // M406 Disable Filament Sensor
|
||||||
|
{
|
||||||
|
fsensor_disable();
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
#endif
|
||||||
|
|
||||||
/*!
|
/*!
|
||||||
### M500 - Store settings in EEPROM <a href="https://reprap.org/wiki/G-code#M500:_Store_parameters_in_non-volatile_storage">M500: Store parameters in non-volatile storage</a>
|
### M500 - Store settings in EEPROM <a href="https://reprap.org/wiki/G-code#M500:_Store_parameters_in_non-volatile_storage">M500: Store parameters in non-volatile storage</a>
|
||||||
Save current parameters to EEPROM.
|
Save current parameters to EEPROM.
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue