From c5060ea81942b0e3f8577536ff78402a19abe3d3 Mon Sep 17 00:00:00 2001 From: tmk Date: Sat, 25 Aug 2012 15:49:08 +0900 Subject: test build of 'Host shield' in minimal env. --- protocol/usb_hid/arduino-1.0.1/cores/arduino/wiring.c | 2 -- 1 file changed, 2 deletions(-) (limited to 'protocol/usb_hid/arduino-1.0.1/cores/arduino/wiring.c') diff --git a/protocol/usb_hid/arduino-1.0.1/cores/arduino/wiring.c b/protocol/usb_hid/arduino-1.0.1/cores/arduino/wiring.c index b1a4ce4b0b..ac8bb6f9b4 100644 --- a/protocol/usb_hid/arduino-1.0.1/cores/arduino/wiring.c +++ b/protocol/usb_hid/arduino-1.0.1/cores/arduino/wiring.c @@ -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. */ -- cgit v1.2.3