1
0
mirror of https://github.com/arduino/Arduino.git synced 2024-12-02 13:24:12 +01:00

Don't activate the pullup on pin 6.

This commit is contained in:
David A. Mellis 2007-07-09 14:02:39 +00:00
parent b2018df662
commit 1a557fae0d

View File

@ -260,8 +260,11 @@ int main(void)
BL_PORT |= _BV(BL0); BL_PORT |= _BV(BL0);
BL_PORT |= _BV(BL1); BL_PORT |= _BV(BL1);
#else #else
/* We run the bootloader regardless of the state of this pin. Thus, don't
put it in a different state than the other pins. --DAM, 070709
BL_DDR &= ~_BV(BL); BL_DDR &= ~_BV(BL);
BL_PORT |= _BV(BL); BL_PORT |= _BV(BL);
*/
#endif #endif