add M17, so the enable stepper button works in repg.
This commit is contained in:
parent
e02af3e66a
commit
7a2d1f5aeb
@ -70,6 +70,8 @@
|
|||||||
// M114 - Display current position
|
// M114 - Display current position
|
||||||
|
|
||||||
//Custom M Codes
|
//Custom M Codes
|
||||||
|
// M17 - Enable/Power all stepper motors
|
||||||
|
// M18 - Disaable all stepper motors; same as M84
|
||||||
// M20 - List SD card
|
// M20 - List SD card
|
||||||
// M21 - Init SD card
|
// M21 - Init SD card
|
||||||
// M22 - Release SD card
|
// M22 - Release SD card
|
||||||
@ -569,6 +571,13 @@ inline void process_commands()
|
|||||||
|
|
||||||
switch( (int)code_value() )
|
switch( (int)code_value() )
|
||||||
{
|
{
|
||||||
|
case 17:
|
||||||
|
LCD_MESSAGEPGM("No move.");
|
||||||
|
enable_x();
|
||||||
|
enable_y();
|
||||||
|
enable_z();
|
||||||
|
enable_e();
|
||||||
|
break;
|
||||||
#ifdef SDSUPPORT
|
#ifdef SDSUPPORT
|
||||||
|
|
||||||
case 20: // M20 - list SD card
|
case 20: // M20 - list SD card
|
||||||
|
Loading…
Reference in New Issue
Block a user