summaryrefslogtreecommitdiffstats
path: root/commandline/usbcalls.c
diff options
context:
space:
mode:
authorJenna Fox <a@creativepony.com>2012-09-23 16:10:31 +1000
committerJenna Fox <a@creativepony.com>2012-09-23 16:10:31 +1000
commit0b63b7b37c027ae58fa29698c5181ecf212f961b (patch)
treecbd2711939c9c29be8ca9b0840aeb9f38978265d /commandline/usbcalls.c
parent824c303782a62b57b6525875b3c2dee81056baa4 (diff)
downloadmicronucleus-0b63b7b37c027ae58fa29698c5181ecf212f961b.tar.gz
micronucleus-0b63b7b37c027ae58fa29698c5181ecf212f961b.tar.bz2
micronucleus-0b63b7b37c027ae58fa29698c5181ecf212f961b.zip
bring in slightly modified version of bootloadHID host programming app by objective development - including delays tiny85 requires (though they could be tuned to be a bit shorter for quicker programming later)
Diffstat (limited to 'commandline/usbcalls.c')
-rw-r--r--commandline/usbcalls.c20
1 files changed, 20 insertions, 0 deletions
diff --git a/commandline/usbcalls.c b/commandline/usbcalls.c
new file mode 100644
index 0000000..f8a1857
--- /dev/null
+++ b/commandline/usbcalls.c
@@ -0,0 +1,20 @@
+/* Name: usbcalls.c
+ * Project: usbcalls library
+ * Author: Christian Starkjohann
+ * Creation Date: 2006-02-02
+ * Tabsize: 4
+ * Copyright: (c) 2006 by OBJECTIVE DEVELOPMENT Software GmbH
+ * License: Proprietary, free under certain conditions. See Documentation.
+ * This Revision: $Id: usbcalls.c 281 2007-03-20 13:22:10Z cs $
+ */
+
+/* This file includes the appropriate implementation based on platform
+ * specific defines.
+ */
+
+#if defined(WIN32)
+# include "usb-windows.c"
+#else
+/* e.g. defined(__APPLE__) */
+# include "usb-libusb.c"
+#endif