blob: f37f4a153ecb5c40bd6ae7efd83ed95d3caf4bb4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#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(STM32L0)
#include "l0_usb.h"
static L0_USB_t USB(0x40005c00, 0x40006000);
#endif
#endif
|