소스 검색

add M17, so the enable stepper button works in repg.

Bernhard Kubicek 13 년 전
부모
커밋
7a2d1f5aeb
1개의 변경된 파일9개의 추가작업 그리고 0개의 파일을 삭제
  1. 9
    0
      Marlin/Marlin.pde

+ 9
- 0
Marlin/Marlin.pde 파일 보기

@@ -70,6 +70,8 @@
70 70
 // M114 - Display current position
71 71
 
72 72
 //Custom M Codes
73
+// M17  - Enable/Power all stepper motors
74
+// M18  - Disaable all stepper motors; same as M84
73 75
 // M20  - List SD card
74 76
 // M21  - Init SD card
75 77
 // M22  - Release SD card
@@ -569,6 +571,13 @@ inline void process_commands()
569 571
 
570 572
     switch( (int)code_value() ) 
571 573
     {
574
+       case 17:
575
+        LCD_MESSAGEPGM("No move.");
576
+        enable_x(); 
577
+        enable_y(); 
578
+        enable_z(); 
579
+        enable_e(); 
580
+      break;
572 581
     #ifdef SDSUPPORT
573 582
 
574 583
     case 20: // M20 - list SD card

Loading…
취소
저장