fixed wrong pin initialization when using temperature 2 pin input

This commit is contained in:
MaikStohn 2013-05-16 01:17:08 +02:00
parent 61a48cc662
commit 4cc6f9f6de

View File

@ -653,7 +653,7 @@ void tp_init()
#if TEMP_2_PIN < 8 #if TEMP_2_PIN < 8
DIDR0 |= 1 << TEMP_2_PIN; DIDR0 |= 1 << TEMP_2_PIN;
#else #else
DIDR2 = 1<<(TEMP_2_PIN - 8); DIDR2 |= 1<<(TEMP_2_PIN - 8);
#endif #endif
#endif #endif
#if (TEMP_BED_PIN > -1) #if (TEMP_BED_PIN > -1)