Browse Source

Woops, fix logic

Guillaume Seguin 11 years ago
parent
commit
01ed99143c
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      Marlin/Marlin_main.cpp

+ 1
- 1
Marlin/Marlin_main.cpp View File

1210
           SERIAL_PROTOCOLPGM(" /");
1210
           SERIAL_PROTOCOLPGM(" /");
1211
           SERIAL_PROTOCOL_F(degTargetBed(),1);
1211
           SERIAL_PROTOCOL_F(degTargetBed(),1);
1212
         #endif //TEMP_BED_PIN
1212
         #endif //TEMP_BED_PIN
1213
-      #else
1214
         for (int8_t cur_extruder = 0; cur_extruder < EXTRUDERS; ++cur_extruder) {
1213
         for (int8_t cur_extruder = 0; cur_extruder < EXTRUDERS; ++cur_extruder) {
1215
           SERIAL_PROTOCOLPGM(" T");
1214
           SERIAL_PROTOCOLPGM(" T");
1216
           SERIAL_PROTOCOL(cur_extruder);
1215
           SERIAL_PROTOCOL(cur_extruder);
1219
           SERIAL_PROTOCOLPGM(" /");
1218
           SERIAL_PROTOCOLPGM(" /");
1220
           SERIAL_PROTOCOL_F(degTargetHotend(cur_extruder),1); 
1219
           SERIAL_PROTOCOL_F(degTargetHotend(cur_extruder),1); 
1221
         }
1220
         }
1221
+      #else
1222
         SERIAL_ERROR_START;
1222
         SERIAL_ERROR_START;
1223
         SERIAL_ERRORLNPGM(MSG_ERR_NO_THERMISTORS);
1223
         SERIAL_ERRORLNPGM(MSG_ERR_NO_THERMISTORS);
1224
       #endif
1224
       #endif

Loading…
Cancel
Save