|
@ -425,7 +425,7 @@ void manage_heater() |
|
|
for(int e = 0; e < EXTRUDERS; e++) |
|
|
for(int e = 0; e < EXTRUDERS; e++) |
|
|
{ |
|
|
{ |
|
|
|
|
|
|
|
|
#ifdef THERMAL_RUNAWAY_PROTECTION_PERIOD && THERMAL_RUNAWAY_PROTECTION_PERIOD > 0 |
|
|
#if defined (THERMAL_RUNAWAY_PROTECTION_PERIOD) && THERMAL_RUNAWAY_PROTECTION_PERIOD > 0 |
|
|
thermal_runaway_protection(&thermal_runaway_state_machine[e], &thermal_runaway_timer[e], current_temperature[e], target_temperature[e], e, THERMAL_RUNAWAY_PROTECTION_PERIOD, THERMAL_RUNAWAY_PROTECTION_HYSTERESIS); |
|
|
thermal_runaway_protection(&thermal_runaway_state_machine[e], &thermal_runaway_timer[e], current_temperature[e], target_temperature[e], e, THERMAL_RUNAWAY_PROTECTION_PERIOD, THERMAL_RUNAWAY_PROTECTION_HYSTERESIS); |
|
|
#endif |
|
|
#endif |
|
|
|
|
|
|
|
@ -725,7 +725,7 @@ static void updateTemperaturesFromRawValues() |
|
|
#ifdef TEMP_SENSOR_1_AS_REDUNDANT |
|
|
#ifdef TEMP_SENSOR_1_AS_REDUNDANT |
|
|
redundant_temperature = analog2temp(redundant_temperature_raw, 1); |
|
|
redundant_temperature = analog2temp(redundant_temperature_raw, 1); |
|
|
#endif |
|
|
#endif |
|
|
#ifdef FILAMENT_SENSOR && (FILWIDTH_PIN > -1) //check if a sensor is supported
|
|
|
#if defined (FILAMENT_SENSOR) && (FILWIDTH_PIN > -1) //check if a sensor is supported
|
|
|
filament_width_meas = analog2widthFil(); |
|
|
filament_width_meas = analog2widthFil(); |
|
|
#endif |
|
|
#endif |
|
|
//Reset the watchdog after we know we have a temperature measurement.
|
|
|
//Reset the watchdog after we know we have a temperature measurement.
|
|
@ -983,7 +983,7 @@ void setWatch() |
|
|
#endif |
|
|
#endif |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
#ifdef THERMAL_RUNAWAY_PROTECTION_PERIOD && THERMAL_RUNAWAY_PROTECTION_PERIOD > 0 |
|
|
#if defined (THERMAL_RUNAWAY_PROTECTION_PERIOD) && THERMAL_RUNAWAY_PROTECTION_PERIOD > 0 |
|
|
void thermal_runaway_protection(int *state, unsigned long *timer, float temperature, float target_temperature, int heater_id, int period_seconds, int hysteresis_degc) |
|
|
void thermal_runaway_protection(int *state, unsigned long *timer, float temperature, float target_temperature, int heater_id, int period_seconds, int hysteresis_degc) |
|
|
{ |
|
|
{ |
|
|
/*
|
|
|
/*
|
|
|