Browse Source

Adjust spacing in view function

Scott Lahteine 10 years ago
parent
commit
007a4bd421
1 changed files with 13 additions and 10 deletions
  1. 13
    10
      Marlin/ConfigurationStore.cpp

+ 13
- 10
Marlin/ConfigurationStore.cpp View File

699
       SERIAL_ECHOLNPGM("PID settings:");
699
       SERIAL_ECHOLNPGM("PID settings:");
700
       SERIAL_ECHO_START;
700
       SERIAL_ECHO_START;
701
     }
701
     }
702
+    #if defined(PIDTEMP) && defined(PIDTEMPBED)
703
+      SERIAL_EOL;
704
+    #endif
702
     #ifdef PIDTEMP
705
     #ifdef PIDTEMP
703
-      SERIAL_ECHOPAIR("   M301 P", PID_PARAM(Kp, 0)); // for compatibility with hosts, only echos values for E0
706
+      SERIAL_ECHOPAIR("  M301 P", PID_PARAM(Kp, 0)); // for compatibility with hosts, only echos values for E0
704
       SERIAL_ECHOPAIR(" I", unscalePID_i(PID_PARAM(Ki, 0)));
707
       SERIAL_ECHOPAIR(" I", unscalePID_i(PID_PARAM(Ki, 0)));
705
       SERIAL_ECHOPAIR(" D", unscalePID_d(PID_PARAM(Kd, 0)));
708
       SERIAL_ECHOPAIR(" D", unscalePID_d(PID_PARAM(Kd, 0)));
706
       SERIAL_EOL;
709
       SERIAL_EOL;
707
     #endif
710
     #endif
708
     #ifdef PIDTEMPBED
711
     #ifdef PIDTEMPBED
709
-      SERIAL_ECHOPAIR("   M304 P", bedKp); // for compatibility with hosts, only echos values for E0
712
+      SERIAL_ECHOPAIR("  M304 P", bedKp); // for compatibility with hosts, only echos values for E0
710
       SERIAL_ECHOPAIR(" I", unscalePID_i(bedKi));
713
       SERIAL_ECHOPAIR(" I", unscalePID_i(bedKi));
711
       SERIAL_ECHOPAIR(" D", unscalePID_d(bedKd));
714
       SERIAL_ECHOPAIR(" D", unscalePID_d(bedKd));
712
       SERIAL_EOL;
715
       SERIAL_EOL;
720
       SERIAL_ECHOLNPGM("Retract: S=Length (mm) F:Speed (mm/m) Z: ZLift (mm)");
723
       SERIAL_ECHOLNPGM("Retract: S=Length (mm) F:Speed (mm/m) Z: ZLift (mm)");
721
       SERIAL_ECHO_START;
724
       SERIAL_ECHO_START;
722
     }
725
     }
723
-    SERIAL_ECHOPAIR("   M207 S", retract_length);
726
+    SERIAL_ECHOPAIR("  M207 S", retract_length);
724
     SERIAL_ECHOPAIR(" F", retract_feedrate*60);
727
     SERIAL_ECHOPAIR(" F", retract_feedrate*60);
725
     SERIAL_ECHOPAIR(" Z", retract_zlift);
728
     SERIAL_ECHOPAIR(" Z", retract_zlift);
726
     SERIAL_EOL;
729
     SERIAL_EOL;
729
       SERIAL_ECHOLNPGM("Recover: S=Extra length (mm) F:Speed (mm/m)");
732
       SERIAL_ECHOLNPGM("Recover: S=Extra length (mm) F:Speed (mm/m)");
730
       SERIAL_ECHO_START;
733
       SERIAL_ECHO_START;
731
     }
734
     }
732
-    SERIAL_ECHOPAIR("   M208 S", retract_recover_length);
735
+    SERIAL_ECHOPAIR("  M208 S", retract_recover_length);
733
     SERIAL_ECHOPAIR(" F", retract_recover_feedrate*60);
736
     SERIAL_ECHOPAIR(" F", retract_recover_feedrate*60);
734
     SERIAL_EOL;
737
     SERIAL_EOL;
735
     SERIAL_ECHO_START;
738
     SERIAL_ECHO_START;
737
       SERIAL_ECHOLNPGM("Auto-Retract: S=0 to disable, 1 to interpret extrude-only moves as retracts or recoveries");
740
       SERIAL_ECHOLNPGM("Auto-Retract: S=0 to disable, 1 to interpret extrude-only moves as retracts or recoveries");
738
       SERIAL_ECHO_START;
741
       SERIAL_ECHO_START;
739
     }
742
     }
740
-    SERIAL_ECHOPAIR("   M209 S", (unsigned long)(autoretract_enabled ? 1 : 0));
743
+    SERIAL_ECHOPAIR("  M209 S", (unsigned long)(autoretract_enabled ? 1 : 0));
741
     SERIAL_EOL;
744
     SERIAL_EOL;
742
 
745
 
743
     #if EXTRUDERS > 1
746
     #if EXTRUDERS > 1
761
       SERIAL_ECHOLNPGM("Filament settings:");
764
       SERIAL_ECHOLNPGM("Filament settings:");
762
       SERIAL_ECHO_START;
765
       SERIAL_ECHO_START;
763
     }
766
     }
764
-    SERIAL_ECHOPAIR("   M200 D", filament_size[0]);
767
+    SERIAL_ECHOPAIR("  M200 D", filament_size[0]);
765
     SERIAL_EOL;
768
     SERIAL_EOL;
766
 
769
 
767
     #if EXTRUDERS > 1
770
     #if EXTRUDERS > 1
768
       SERIAL_ECHO_START;
771
       SERIAL_ECHO_START;
769
-      SERIAL_ECHOPAIR("   M200 T1 D", filament_size[1]);
772
+      SERIAL_ECHOPAIR("  M200 T1 D", filament_size[1]);
770
       SERIAL_EOL;
773
       SERIAL_EOL;
771
       #if EXTRUDERS > 2
774
       #if EXTRUDERS > 2
772
         SERIAL_ECHO_START;
775
         SERIAL_ECHO_START;
773
-        SERIAL_ECHOPAIR("   M200 T2 D", filament_size[2]);
776
+        SERIAL_ECHOPAIR("  M200 T2 D", filament_size[2]);
774
         SERIAL_EOL;
777
         SERIAL_EOL;
775
         #if EXTRUDERS > 3
778
         #if EXTRUDERS > 3
776
           SERIAL_ECHO_START;
779
           SERIAL_ECHO_START;
777
-          SERIAL_ECHOPAIR("   M200 T3 D", filament_size[3]);
780
+          SERIAL_ECHOPAIR("  M200 T3 D", filament_size[3]);
778
           SERIAL_EOL;
781
           SERIAL_EOL;
779
         #endif
782
         #endif
780
       #endif
783
       #endif
793
         SERIAL_ECHOLNPGM("Z-Probe Offset (mm):");
796
         SERIAL_ECHOLNPGM("Z-Probe Offset (mm):");
794
         SERIAL_ECHO_START;
797
         SERIAL_ECHO_START;
795
       }
798
       }
796
-      SERIAL_ECHOPAIR("   M", (unsigned long)CUSTOM_M_CODE_SET_Z_PROBE_OFFSET);
799
+      SERIAL_ECHOPAIR("  M", (unsigned long)CUSTOM_M_CODE_SET_Z_PROBE_OFFSET);
797
       SERIAL_ECHOPAIR(" Z", -zprobe_zoffset);
800
       SERIAL_ECHOPAIR(" Z", -zprobe_zoffset);
798
     #else
801
     #else
799
       if (!forReplay) {
802
       if (!forReplay) {

Loading…
Cancel
Save