1
0
mirror of https://github.com/MarlinFirmware/Marlin.git synced 2024-11-24 20:43:32 +00:00

🔧 Warning for IGNORE_THERMOCOUPLE_ERRORS (#23312)

This commit is contained in:
John Lagonikas 2021-12-18 01:31:10 +02:00 committed by GitHub
parent 9d2441f951
commit 504e6fd786
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1353,6 +1353,8 @@ void Temperature::manage_heater() {
if (degRedundant() > TEMP_SENSOR_REDUNDANT_MAX_TC_TMAX - 1.0) max_temp_error(H_REDUNDANT);
if (degRedundant() < TEMP_SENSOR_REDUNDANT_MAX_TC_TMIN + .01) min_temp_error(H_REDUNDANT);
#endif
#else
#warning "Safety Alert! Disable IGNORE_THERMOCOUPLE_ERRORS for the final build!"
#endif
millis_t ms = millis();