Browse Source

fixed wrong pin initialization when using temperature 2 pin input

pull/1/head
MaikStohn 12 years ago
parent
commit
4cc6f9f6de
  1. 2
      Marlin/temperature.cpp

2
Marlin/temperature.cpp

@ -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)

Loading…
Cancel
Save