From 06ba0485fbcafca136fdc48285262b26a729a972 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Karel=20Ko=C4=8D=C3=AD?= Date: Sun, 22 Mar 2015 14:07:21 +0100 Subject: Prepare for usb_cdc --- src/usb_cdc.c | 4 ++++ usb_cdc.h | 10 ++++++++++ 2 files changed, 14 insertions(+) create mode 100644 src/usb_cdc.c create mode 100644 usb_cdc.h 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 +#include + +#ifndef _IOE_USB_CDC_H_ +#define _IOE_USB_CDC_H_ + +void ioe_usb_cdc_init(void); + + +#endif /* _IOE_USB_CDC_H_ */ -- cgit v1.2.3