summaryrefslogtreecommitdiff
path: root/chip/stm32/usb-stm32f3.c
diff options
context:
space:
mode:
Diffstat (limited to 'chip/stm32/usb-stm32f3.c')
-rw-r--r--chip/stm32/usb-stm32f3.c20
1 files changed, 20 insertions, 0 deletions
diff --git a/chip/stm32/usb-stm32f3.c b/chip/stm32/usb-stm32f3.c
new file mode 100644
index 0000000000..ceab410da0
--- /dev/null
+++ b/chip/stm32/usb-stm32f3.c
@@ -0,0 +1,20 @@
+/* Copyright (c) 2014 The Chromium OS Authors. All rights reserved.
+ * Use of this source code is governed by a BSD-style license that can be
+ * found in the LICENSE file.
+ *
+ * STM32F3 Family specific USB functionality
+ */
+
+#include "usb-stm32f3.h"
+
+#include "usb_api.h"
+
+void usb_connect(void)
+{
+ usb_board_connect();
+}
+
+void usb_disconnect(void)
+{
+ usb_board_connect();
+}