Skip to content

Commit

Permalink
regression testing showed that the extra manageCoolingFan calls were …
Browse files Browse the repository at this point in the history
…not needed, the bug was in EEPROM settings. Fix is to re-flash EEPROM, not a code fix.
  • Loading branch information
FarMcKon committed Oct 3, 2011
1 parent 71284ab commit e63eeef
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions v2/src/Extruder/boards/ecv34/ExtruderBoard.cc
Expand Up @@ -164,14 +164,12 @@ void ExtruderBoard::runExtruderSlice() {

int ExtruderBoard::get_current_temperature()
{
coolingFan.manageCoolingFan();
return extruder_heater.get_current_temperature();
return extruder_heater.get_current_temperature();
}

void ExtruderBoard::set_target_temperature(int temp )
{
coolingFan.manageCoolingFan();
return extruder_heater.set_target_temperature(temp);
return extruder_heater.set_target_temperature(temp);
}


Expand Down

0 comments on commit e63eeef

Please sign in to comment.