ソースを参照

Report the probe position in G30

Scott Lahteine 9年前
コミット
2f6c5fe2da
1個のファイルの変更2行の追加2行の削除
  1. 2
    2
      Marlin/Marlin_main.cpp

+ 2
- 2
Marlin/Marlin_main.cpp ファイルの表示

3427
 
3427
 
3428
       run_z_probe();
3428
       run_z_probe();
3429
       SERIAL_PROTOCOLPGM("Bed X: ");
3429
       SERIAL_PROTOCOLPGM("Bed X: ");
3430
-      SERIAL_PROTOCOL(current_position[X_AXIS] + 0.0001);
3430
+      SERIAL_PROTOCOL(current_position[X_AXIS] + X_PROBE_OFFSET_FROM_EXTRUDER + 0.0001);
3431
       SERIAL_PROTOCOLPGM(" Y: ");
3431
       SERIAL_PROTOCOLPGM(" Y: ");
3432
-      SERIAL_PROTOCOL(current_position[Y_AXIS] + 0.0001);
3432
+      SERIAL_PROTOCOL(current_position[Y_AXIS] + Y_PROBE_OFFSET_FROM_EXTRUDER + 0.0001);
3433
       SERIAL_PROTOCOLPGM(" Z: ");
3433
       SERIAL_PROTOCOLPGM(" Z: ");
3434
       SERIAL_PROTOCOL(current_position[Z_AXIS] + 0.0001);
3434
       SERIAL_PROTOCOL(current_position[Z_AXIS] + 0.0001);
3435
       SERIAL_EOL;
3435
       SERIAL_EOL;

読み込み中…
キャンセル
保存