aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKarel Kočí <cynerd@email.cz>2015-03-22 14:07:21 +0100
committerKarel Kočí <cynerd@email.cz>2015-03-22 14:07:21 +0100
commit06ba0485fbcafca136fdc48285262b26a729a972 (patch)
treed19b0e57247c37b64d0ca7e061dbf5fdcad19e0f
parent1c75a78573173679505b3713a928134c4ee9716a (diff)
downloadavr-ioe-06ba0485fbcafca136fdc48285262b26a729a972.tar.gz
avr-ioe-06ba0485fbcafca136fdc48285262b26a729a972.tar.bz2
avr-ioe-06ba0485fbcafca136fdc48285262b26a729a972.zip
Prepare for usb_cdc
-rw-r--r--src/usb_cdc.c4
-rw-r--r--usb_cdc.h10
2 files changed, 14 insertions, 0 deletions
diff --git a/src/usb_cdc.c b/src/usb_cdc.c
new file mode 100644
index 0000000..2a1ba3a
--- /dev/null
+++ b/src/usb_cdc.c
@@ -0,0 +1,4 @@
+#include "../usb_cdc.h"
+
+void ioe_usb_cdc_init(void) {
+}
diff --git a/usb_cdc.h b/usb_cdc.h
new file mode 100644
index 0000000..17bd2cf
--- /dev/null
+++ b/usb_cdc.h
@@ -0,0 +1,10 @@
+#include <stdio.h>
+#include <avr/io.h>
+
+#ifndef _IOE_USB_CDC_H_
+#define _IOE_USB_CDC_H_
+
+void ioe_usb_cdc_init(void);
+
+
+#endif /* _IOE_USB_CDC_H_ */