summaryrefslogtreecommitdiff
path: root/usb/usb.h
diff options
context:
space:
mode:
Diffstat (limited to 'usb/usb.h')
-rw-r--r--usb/usb.h22
1 files changed, 0 insertions, 22 deletions
diff --git a/usb/usb.h b/usb/usb.h
deleted file mode 100644
index b1385b6..0000000
--- a/usb/usb.h
+++ /dev/null
@@ -1,22 +0,0 @@
-#ifndef USB_H
-#define USB_H
-
-#if defined(STM32F1) || defined(STM32F3)
-#include "f1_usb.h"
-
-static F1_USB_t USB(0x40005c00, 0x40006000);
-
-#elif defined(STM32F4)
-#include "dwc_otg.h"
-
-static DWC_OTG_t OTG_FS(0x50000000);
-static DWC_OTG_t OTG_HS(0x40040000);
-
-#elif defined(STM32F0) || defined(STM32L0)
-#include "l0_usb.h"
-
-static L0_USB_t USB(0x40005c00, 0x40006000);
-
-#endif
-
-#endif