|
@@ -851,7 +851,7 @@ ISR(TIMER0_COMPB_vect)
|
851
|
851
|
for(unsigned char e = 0; e < EXTRUDERS; e++) {
|
852
|
852
|
if(current_raw[e] >= maxttemp[e]) {
|
853
|
853
|
target_raw[e] = 0;
|
854
|
|
- #if (PS_ON != -1)
|
|
854
|
+ #ifndef BOGUS_TEMPERATURE_FAILSAFE_OVERRIDE
|
855
|
855
|
{
|
856
|
856
|
max_temp_error(e);
|
857
|
857
|
kill();;
|
|
@@ -860,7 +860,7 @@ ISR(TIMER0_COMPB_vect)
|
860
|
860
|
}
|
861
|
861
|
if(current_raw[e] <= minttemp[e]) {
|
862
|
862
|
target_raw[e] = 0;
|
863
|
|
- #if (PS_ON != -1)
|
|
863
|
+ #ifndef BOGUS_TEMPERATURE_FAILSAFE_OVERRIDE
|
864
|
864
|
{
|
865
|
865
|
min_temp_error(e);
|
866
|
866
|
kill();
|