summaryrefslogtreecommitdiff
path: root/usb/usb.h
blob: e57867c343290672f6a6a1db96b079d97c72214c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#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);

#elif defined(STM32WB)
#include "l0_usb.h"

static L0_USB_t USB(0x40006800, 0x40006c00);

#endif

#endif