blob: b9d8d1086ce612abad6a68e945c112ccef0e0b0e (
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
28
29
30
31
32
33
34
35
36
37
|
#ifndef L0_USB_DEF_H
#define L0_USB_DEF_H
#include <stdint.h>
class L0_USB_t {
private:
struct L0_USB_reg_t {
volatile uint32_t EPR[16];
volatile uint32_t CNTR;
volatile uint32_t ISTR;
volatile uint32_t FNR;
volatile uint32_t DADDR;
volatile uint32_t BTABLE;
volatile uint32_t LPMCSR;
volatile uint32_t BCDR;
};
struct L0_USB_bufd_t {
volatile uint16_t ADDR_TX;
volatile uint16_t COUNT_TX;
volatile uint16_t ADDR_RX;
volatile uint16_t COUNT_RX;
};
public:
L0_USB_reg_t& reg;
L0_USB_bufd_t* bufd;
volatile uint16_t* buf;
L0_USB_t(uint32_t reg_addr, uint32_t buf_addr) :
reg(*(L0_USB_reg_t*)reg_addr),
bufd((L0_USB_bufd_t*)buf_addr),
buf((volatile uint16_t*)buf_addr) {}
};
#endif
|