]> git.donarmstrong.com Git - tmk_firmware.git/blobdiff - protocol/usb_hid/arduino-1.0.1/cores/arduino/wiring.c
test build of 'Host shield' in minimal env.
[tmk_firmware.git] / protocol / usb_hid / arduino-1.0.1 / cores / arduino / wiring.c
index b1a4ce4b0ba840e88f9ac2f4ef9ab60af8cd6227..ac8bb6f9b4e1ef85b617ccff4b0842ca9b5d697b 100644 (file)
@@ -108,7 +108,6 @@ unsigned long micros() {
 
 void delay(unsigned long ms)
 {
-//PORTB &= ~(1<<0);
        uint16_t start = (uint16_t)micros();
 
        while (ms > 0) {
@@ -117,7 +116,6 @@ void delay(unsigned long ms)
                        start += 1000;
                }
        }
-//PORTB |= (1<<0);
 }
 
 /* Delay for the given number of microseconds.  Assumes a 8 or 16 MHz clock. */