aboutsummaryrefslogtreecommitdiff
path: root/cores/arduino/USBCore.cpp
diff options
context:
space:
mode:
authorZach Eveland <zeveland@blacklabel-development.com>2011-08-30 11:50:08 -0400
committerZach Eveland <zeveland@blacklabel-development.com>2011-08-30 11:50:08 -0400
commitaf635024db2b5d46d57eb5f5da959f6b4f4bf42c (patch)
tree37c2727e05642c2ed5ca2b9267adbf2d6fde70ce /cores/arduino/USBCore.cpp
parent481fdeab797d449f6b82473b1e377c495224cff7 (diff)
support for non-Leonardo boards is back!
Diffstat (limited to 'cores/arduino/USBCore.cpp')
-rw-r--r--cores/arduino/USBCore.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/cores/arduino/USBCore.cpp b/cores/arduino/USBCore.cpp
index 49fda35..9ce2e00 100644
--- a/cores/arduino/USBCore.cpp
+++ b/cores/arduino/USBCore.cpp
@@ -20,6 +20,8 @@
#include "USBAPI.h"
#include "USBDesc.h"
+#if defined(USBCON)
+
#define EP_TYPE_CONTROL 0x00
#define EP_TYPE_BULK_IN 0x81
#define EP_TYPE_BULK_OUT 0x80
@@ -648,4 +650,6 @@ void USB_::poll()
if (USB_Available(MSC_RX))
MSC_Data(MSC_RX,MSC_TX);
#endif
-} \ No newline at end of file
+}
+
+#endif /* if defined(USBCON) */ \ No newline at end of file