aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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_ */