浏览代码

Output ABC for delta stepper counts

Scott Lahteine 7 年前
父节点
当前提交
7d8a46519f
共有 1 个文件被更改,包括 3 次插入3 次删除
  1. 3
    3
      Marlin/src/module/stepper.cpp

+ 3
- 3
Marlin/src/module/stepper.cpp 查看文件

1225
              zpos = count_position[Z_AXIS];
1225
              zpos = count_position[Z_AXIS];
1226
   CRITICAL_SECTION_END;
1226
   CRITICAL_SECTION_END;
1227
 
1227
 
1228
-  #if CORE_IS_XY || CORE_IS_XZ || IS_SCARA
1228
+  #if CORE_IS_XY || CORE_IS_XZ || IS_DELTA || IS_SCARA
1229
     SERIAL_PROTOCOLPGM(MSG_COUNT_A);
1229
     SERIAL_PROTOCOLPGM(MSG_COUNT_A);
1230
   #else
1230
   #else
1231
     SERIAL_PROTOCOLPGM(MSG_COUNT_X);
1231
     SERIAL_PROTOCOLPGM(MSG_COUNT_X);
1232
   #endif
1232
   #endif
1233
   SERIAL_PROTOCOL(xpos);
1233
   SERIAL_PROTOCOL(xpos);
1234
 
1234
 
1235
-  #if CORE_IS_XY || CORE_IS_YZ || IS_SCARA
1235
+  #if CORE_IS_XY || CORE_IS_YZ || IS_DELTA || IS_SCARA
1236
     SERIAL_PROTOCOLPGM(" B:");
1236
     SERIAL_PROTOCOLPGM(" B:");
1237
   #else
1237
   #else
1238
     SERIAL_PROTOCOLPGM(" Y:");
1238
     SERIAL_PROTOCOLPGM(" Y:");
1239
   #endif
1239
   #endif
1240
   SERIAL_PROTOCOL(ypos);
1240
   SERIAL_PROTOCOL(ypos);
1241
 
1241
 
1242
-  #if CORE_IS_XZ || CORE_IS_YZ
1242
+  #if CORE_IS_XZ || CORE_IS_YZ || IS_DELTA
1243
     SERIAL_PROTOCOLPGM(" C:");
1243
     SERIAL_PROTOCOLPGM(" C:");
1244
   #else
1244
   #else
1245
     SERIAL_PROTOCOLPGM(" Z:");
1245
     SERIAL_PROTOCOLPGM(" Z:");

正在加载...
取消
保存