Browse Source

Merge pull request #775 from MissionSt/lang-fix/bed

Use language.h for "bed"
nothinman 11 years ago
parent
commit
3b193d1b5f
1 changed files with 4 additions and 2 deletions
  1. 4
    2
      Marlin/Marlin_main.cpp

+ 4
- 2
Marlin/Marlin_main.cpp View File

989
   float measured_z = current_position[Z_AXIS];
989
   float measured_z = current_position[Z_AXIS];
990
   retract_z_probe();
990
   retract_z_probe();
991
 
991
 
992
-  SERIAL_PROTOCOLPGM("Bed x: ");
992
+  SERIAL_PROTOCOLPGM(MSG_BED);
993
+  SERIAL_PROTOCOLPGM(" x: ");
993
   SERIAL_PROTOCOL(x);
994
   SERIAL_PROTOCOL(x);
994
   SERIAL_PROTOCOLPGM(" y: ");
995
   SERIAL_PROTOCOLPGM(" y: ");
995
   SERIAL_PROTOCOL(y);
996
   SERIAL_PROTOCOL(y);
1520
             feedrate = homing_feedrate[Z_AXIS];
1521
             feedrate = homing_feedrate[Z_AXIS];
1521
 
1522
 
1522
             run_z_probe();
1523
             run_z_probe();
1523
-            SERIAL_PROTOCOLPGM("Bed Position X: ");
1524
+            SERIAL_PROTOCOLPGM(MSG_BED);
1525
+            SERIAL_PROTOCOLPGM(" X: ");
1524
             SERIAL_PROTOCOL(current_position[X_AXIS]);
1526
             SERIAL_PROTOCOL(current_position[X_AXIS]);
1525
             SERIAL_PROTOCOLPGM(" Y: ");
1527
             SERIAL_PROTOCOLPGM(" Y: ");
1526
             SERIAL_PROTOCOL(current_position[Y_AXIS]);
1528
             SERIAL_PROTOCOL(current_position[Y_AXIS]);

Loading…
Cancel
Save