Browse Source

This breaks temperature readout for pronterface!

grrf 13 years ago
parent
commit
03b0850e63
1 changed files with 4 additions and 4 deletions
  1. 4
    4
      Marlin/Marlin.pde

+ 4
- 4
Marlin/Marlin.pde View File

850
       #if (TEMP_0_PIN > -1)
850
       #if (TEMP_0_PIN > -1)
851
         SERIAL_PROTOCOLPGM("ok T:");
851
         SERIAL_PROTOCOLPGM("ok T:");
852
         SERIAL_PROTOCOL(degHotend(tmp_extruder)); 
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
         #if TEMP_BED_PIN > -1
855
         #if TEMP_BED_PIN > -1
856
           SERIAL_PROTOCOLPGM(" B:");  
856
           SERIAL_PROTOCOLPGM(" B:");  
857
           SERIAL_PROTOCOL(degBed());
857
           SERIAL_PROTOCOL(degBed());
858
-          SERIAL_PROTOCOLPGM("/");
859
-          SERIAL_PROTOCOL(degTargetBed());
858
+          //SERIAL_PROTOCOLPGM("/");
859
+          //SERIAL_PROTOCOL(degTargetBed());
860
         #endif //TEMP_BED_PIN
860
         #endif //TEMP_BED_PIN
861
       #else
861
       #else
862
         SERIAL_ERROR_START;
862
         SERIAL_ERROR_START;

Loading…
Cancel
Save