diff options
author | tmk <nobody@nowhere> | 2012-08-25 15:49:08 +0900 |
---|---|---|
committer | tmk <nobody@nowhere> | 2012-08-28 21:56:15 +0900 |
commit | c5060ea81942b0e3f8577536ff78402a19abe3d3 (patch) | |
tree | bcdd4cd269be3064982014b0afdc0aea628d7048 /protocol/usb_hid/override_wiring.c | |
parent | 9382bf2f765cfbb8f7a9a48157391cac2bb71780 (diff) |
test build of 'Host shield' in minimal env.
Diffstat (limited to 'protocol/usb_hid/override_wiring.c')
-rw-r--r-- | protocol/usb_hid/override_wiring.c | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/protocol/usb_hid/override_wiring.c b/protocol/usb_hid/override_wiring.c new file mode 100644 index 0000000000..a8c28dd898 --- /dev/null +++ b/protocol/usb_hid/override_wiring.c @@ -0,0 +1,28 @@ +/* + * To keep Timer0 for common/timer.c override arduino/wiring.c. + */ +#include <util/delay.h> +#include "common/timer.h" +#include "Arduino.h" + + +unsigned long millis() +{ + return timer_read(); +} +unsigned long micros() +{ + return timer_read() * 1000UL; +} +void delay(unsigned long ms) +{ + _delay_ms(ms); +} +void delayMicroseconds(unsigned int us) +{ + _delay_us(us); +} +void init() +{ + timer_init(); +} |