Browse Source

Stepper::report_positions patch

Scott Lahteine 7 years ago
parent
commit
edfaf1c582
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      Marlin/stepper.cpp

+ 2
- 2
Marlin/stepper.cpp View File

@@ -1062,14 +1062,14 @@ void Stepper::report_positions() {
1062 1062
        zpos = count_position[Z_AXIS];
1063 1063
   CRITICAL_SECTION_END;
1064 1064
 
1065
-  #if ENABLED(COREXY) || ENABLED(COREXZ)
1065
+  #if ENABLED(COREXY) || ENABLED(COREXZ) || IS_SCARA
1066 1066
     SERIAL_PROTOCOLPGM(MSG_COUNT_A);
1067 1067
   #else
1068 1068
     SERIAL_PROTOCOLPGM(MSG_COUNT_X);
1069 1069
   #endif
1070 1070
   SERIAL_PROTOCOL(xpos);
1071 1071
 
1072
-  #if ENABLED(COREXY) || ENABLED(COREYZ)
1072
+  #if ENABLED(COREXY) || ENABLED(COREYZ) || IS_SCARA
1073 1073
     SERIAL_PROTOCOLPGM(" B:");
1074 1074
   #else
1075 1075
     SERIAL_PROTOCOLPGM(" Y:");

Loading…
Cancel
Save