浏览代码

Merge pull request #3328 from RicardoGA/RC_Babystepping_fix

Babystepping Fix
Scott Lahteine 8 年前
父节点
当前提交
f08b0d034f
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1
    1
      Marlin/ultralcd.cpp

+ 1
- 1
Marlin/ultralcd.cpp 查看文件

@@ -522,9 +522,9 @@ void lcd_set_home_offsets() {
522 522
   static void _lcd_babystep(const int axis, const char* msg) {
523 523
     ENCODER_DIRECTION_NORMAL();
524 524
     if (encoderPosition != 0) {
525
+      int distance =  (int)encoderPosition * BABYSTEP_MULTIPLICATOR;
525 526
       encoderPosition = 0;
526 527
       lcdDrawUpdate = 1;
527
-      int distance =  (int)encoderPosition * BABYSTEP_MULTIPLICATOR;
528 528
       #if ENABLED(COREXY) || ENABLED(COREXZ)
529 529
         #if ENABLED(BABYSTEP_XY)
530 530
           switch(axis) {

正在加载...
取消
保存