Browse Source

Merge pull request #136 from grrf/patch-1

This breaks temperature readout for pronterface!
ErikZalm 13 years ago
parent
commit
325f0651ac
1 changed files with 4 additions and 4 deletions
  1. 4
    4
      Marlin/Marlin.pde

+ 4
- 4
Marlin/Marlin.pde View File

@@ -850,13 +850,13 @@ void process_commands()
850 850
       #if (TEMP_0_PIN > -1)
851 851
         SERIAL_PROTOCOLPGM("ok T:");
852 852
         SERIAL_PROTOCOL(degHotend(tmp_extruder)); 
853
-        SERIAL_PROTOCOLPGM("/");
854
-        SERIAL_PROTOCOL(degTargetHotend(tmp_extruder)); 
853
+        //SERIAL_PROTOCOLPGM("/");
854
+        //SERIAL_PROTOCOL(degTargetHotend(tmp_extruder)); 
855 855
         #if TEMP_BED_PIN > -1
856 856
           SERIAL_PROTOCOLPGM(" B:");  
857 857
           SERIAL_PROTOCOL(degBed());
858
-          SERIAL_PROTOCOLPGM("/");
859
-          SERIAL_PROTOCOL(degTargetBed());
858
+          //SERIAL_PROTOCOLPGM("/");
859
+          //SERIAL_PROTOCOL(degTargetBed());
860 860
         #endif //TEMP_BED_PIN
861 861
       #else
862 862
         SERIAL_ERROR_START;

Loading…
Cancel
Save