Rebase, fix and update doxygen

This commit is contained in:
3d-gussner 2023-08-10 15:09:13 +02:00 committed by DRracer
parent f449b06bb2
commit 500a6558a5
1 changed files with 19 additions and 2 deletions

View File

@ -7448,15 +7448,32 @@ Sigma_Exit:
break; break;
#ifdef FILAMENT_SENSOR #ifdef FILAMENT_SENSOR
/*!
### M405 - Filament Sensor on <a href="https://reprap.org/wiki/G-code#M405:_Filament_Sensor_on">M405: Filament Sensor on</a>
Turn on Filament Sensor extrusion control.
#### Usage
M405
*/
case 405: // M405 Enable Filament Sensor case 405: // M405 Enable Filament Sensor
{ {
fsensor_enable(); fsensor.setEnabled(1);
} }
break; break;
/*!
### M406 - Filament Sensor off <a href="https://reprap.org/wiki/G-code#M406:_Filament_Sensor_off">M406: Filament Sensor off</a>
Turn off Filament Sensor extrusion control.
#### Usage
M406
*/
case 406: // M406 Disable Filament Sensor case 406: // M406 Disable Filament Sensor
{ {
fsensor_disable(); fsensor.setEnabled(0);
} }
break; break;
#endif #endif