Disable M120 M121

This commit is contained in:
3d-gussner 2021-03-10 17:46:19 +01:00
parent eb4cf1a77f
commit 832e881955

View File

@ -6967,19 +6967,21 @@ Sigma_Exit:
lcd_setstatus(strchr_pointer + 5);
break;*/
#if 0 //Disable these for the time being
/*!
### M120 - Enable endstops <a href="https://reprap.org/wiki/G-code#M120:_Enable_endstop_detection">M120: Enable endstop detection</a>
### M120 - Enable endstops <a href="https://reprap.org/wiki/G-code#M120:_Enable_endstop_detection">M120: Enable endstop detection</a>
*/
case 120:
enable_endstops(true) ;
break;
/*!
### M121 - Disable endstops <a href="https://reprap.org/wiki/G-code#M121:_Disable_endstop_detection">M121: Disable endstop detection</a>
### M121 - Disable endstops <a href="https://reprap.org/wiki/G-code#M121:_Disable_endstop_detection">M121: Disable endstop detection</a>
*/
case 121:
enable_endstops(false) ;
break;
#endif //0
/*!
### M119 - Get endstop states <a href="https://reprap.org/wiki/G-code#M119:_Get_Endstop_Status">M119: Get Endstop Status</a>