1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-08-08 11:22:40 +03: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(BL1);
#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_PORT |= _BV(BL);
*/
#endif