Add explicit #define for bogus temp override
The code to ignore the "bad thermistor reading failsafe" suicide function depends on the existing of the PS_ON pin feature. But in some boards this shouldn't be the case Fix this by adding an explicit definition to make our intentions more clear and separable.
This commit is contained in:
@ -851,7 +851,7 @@ ISR(TIMER0_COMPB_vect)
|
||||
for(unsigned char e = 0; e < EXTRUDERS; e++) {
|
||||
if(current_raw[e] >= maxttemp[e]) {
|
||||
target_raw[e] = 0;
|
||||
#if (PS_ON != -1)
|
||||
#ifndef BOGUS_TEMPERATURE_FAILSAFE_OVERRIDE
|
||||
{
|
||||
max_temp_error(e);
|
||||
kill();;
|
||||
@ -860,7 +860,7 @@ ISR(TIMER0_COMPB_vect)
|
||||
}
|
||||
if(current_raw[e] <= minttemp[e]) {
|
||||
target_raw[e] = 0;
|
||||
#if (PS_ON != -1)
|
||||
#ifndef BOGUS_TEMPERATURE_FAILSAFE_OVERRIDE
|
||||
{
|
||||
min_temp_error(e);
|
||||
kill();
|
||||
|
Reference in New Issue
Block a user