Merge pull request #1802 from Natealus/Development
Compiling error temperature.cpp with multiple extruders defined
This commit is contained in:
commit
e8a711994a
1 changed files with 1 additions and 1 deletions
|
@ -1556,7 +1556,7 @@ ISR(TIMER0_COMPB_vect) {
|
||||||
#else
|
#else
|
||||||
#define GE2 >=
|
#define GE2 >=
|
||||||
#endif
|
#endif
|
||||||
if (current_temperature_raw[2] GE2 (maxttemp_raw[2]) max_temp_error(2);
|
if (current_temperature_raw[2] GE2 maxttemp_raw[2]) max_temp_error(2);
|
||||||
if (minttemp_raw[2] GE2 current_temperature_raw[2]) min_temp_error(2);
|
if (minttemp_raw[2] GE2 current_temperature_raw[2]) min_temp_error(2);
|
||||||
#endif // TEMP_SENSOR_2
|
#endif // TEMP_SENSOR_2
|
||||||
|
|
||||||
|
|
Reference in a new issue