diff options
author | tmk <nobody@nowhere> | 2012-08-14 00:46:03 +0900 |
---|---|---|
committer | tmk <nobody@nowhere> | 2012-08-28 21:56:15 +0900 |
commit | 9382bf2f765cfbb8f7a9a48157391cac2bb71780 (patch) | |
tree | 4dbcd2828d4ecf2a0cc8662300b4d5e349e21439 /protocol/usb_hid/arduino-1.0.1/cores/arduino/main.cpp | |
parent | 895cd4dfa29f0f3c623544f4868ac63e619c69d9 (diff) |
Add USB_Host_Shield_2.0 and arduino-1.0.1 in usb_hid.
Diffstat (limited to 'protocol/usb_hid/arduino-1.0.1/cores/arduino/main.cpp')
-rw-r--r-- | protocol/usb_hid/arduino-1.0.1/cores/arduino/main.cpp | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/protocol/usb_hid/arduino-1.0.1/cores/arduino/main.cpp b/protocol/usb_hid/arduino-1.0.1/cores/arduino/main.cpp new file mode 100644 index 0000000000..3d4e079d2a --- /dev/null +++ b/protocol/usb_hid/arduino-1.0.1/cores/arduino/main.cpp @@ -0,0 +1,20 @@ +#include <Arduino.h> + +int main(void) +{ + init(); + +#if defined(USBCON) + USBDevice.attach(); +#endif + + setup(); + + for (;;) { + loop(); + if (serialEventRun) serialEventRun(); + } + + return 0; +} + |