Browse Source

Woops, fix logic

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

+ 1
- 1
Marlin/Marlin_main.cpp View File

1219
           SERIAL_PROTOCOLPGM(" /");
1219
           SERIAL_PROTOCOLPGM(" /");
1220
           SERIAL_PROTOCOL_F(degTargetBed(),1);
1220
           SERIAL_PROTOCOL_F(degTargetBed(),1);
1221
         #endif //TEMP_BED_PIN
1221
         #endif //TEMP_BED_PIN
1222
-      #else
1223
         for (int8_t cur_extruder = 0; cur_extruder < EXTRUDERS; ++cur_extruder) {
1222
         for (int8_t cur_extruder = 0; cur_extruder < EXTRUDERS; ++cur_extruder) {
1224
           SERIAL_PROTOCOLPGM(" T");
1223
           SERIAL_PROTOCOLPGM(" T");
1225
           SERIAL_PROTOCOL(cur_extruder);
1224
           SERIAL_PROTOCOL(cur_extruder);
1228
           SERIAL_PROTOCOLPGM(" /");
1227
           SERIAL_PROTOCOLPGM(" /");
1229
           SERIAL_PROTOCOL_F(degTargetHotend(cur_extruder),1); 
1228
           SERIAL_PROTOCOL_F(degTargetHotend(cur_extruder),1); 
1230
         }
1229
         }
1230
+      #else
1231
         SERIAL_ERROR_START;
1231
         SERIAL_ERROR_START;
1232
         SERIAL_ERRORLNPGM(MSG_ERR_NO_THERMISTORS);
1232
         SERIAL_ERRORLNPGM(MSG_ERR_NO_THERMISTORS);
1233
       #endif
1233
       #endif

Loading…
Cancel
Save