File tree
10 files changed
+264
-133
lines changed- lib
- ports/nrf
- boards/pca10056
- usb
10 files changed
+264
-133
lines changed- examples/device/device_virtual_com/src/main.c+3-3
- examples/device/device_virtual_com/src/tusb_config.h+1-1
- examples/device/nrf52840/src/main.c+4-3
- examples/device/nrf52840/src/msc_device_app.c-56
- examples/device/nrf52840/src/tusb_config.h+22-4
- examples/device/nrf52840/src/tusb_descriptors.c+12-36
- examples/obsolete/device/src/cdc_device_app.c+1-1
- examples/obsolete/device/src/main.c+4-2
- examples/obsolete/device/src/tusb_config.h+1-1
- src/class/cdc/cdc_device.c+138-80
- src/class/cdc/cdc_device.h+44-30
- src/class/cdc/cdc_host.c+7-7
- src/class/custom/custom_device.c+1-1
- src/class/custom/custom_device.h+1-1
- src/class/hid/hid_device.c+3-3
- src/class/hid/hid_device.h+1-1
- src/class/hid/hid_host.c+2-2
- src/class/msc/msc_device.c+4-40
- src/class/msc/msc_device.h+43-6
- src/common/tusb_common.h+8-3
- src/common/tusb_fifo.c+5-5
- src/common/tusb_fifo.h+1-1
- src/common/tusb_types.h+2-2
- src/common/tusb_verify.h+1
- src/device/usbd.c+115-96
- src/device/usbd.h+5-18
- src/device/usbd_desc.c+4-6
- src/device/usbd_pvt.h+11-10
- src/host/usbh.c+4-4
- src/osal/osal_none.h+4-4
- src/portable/nordic/nrf5x/hal_nrf5x.c-30
- src/tusb_option.h+3-1
Lines changed: 2 additions & 2 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
102 | 102 |
| |
103 | 103 |
| |
104 | 104 |
| |
| 105 | + | |
105 | 106 |
| |
106 | 107 |
| |
107 | 108 |
| |
| |||
113 | 114 |
| |
114 | 115 |
| |
115 | 116 |
| |
116 |
| - | |
117 | 117 |
| |
118 | 118 |
| |
119 | 119 |
| |
| |||
122 | 122 |
| |
123 | 123 |
| |
124 | 124 |
| |
125 |
| - | |
| 125 | + | |
126 | 126 |
| |
127 | 127 |
| |
128 | 128 |
| |
|
Lines changed: 3 additions & 8 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
51 | 51 |
| |
52 | 52 |
| |
53 | 53 |
| |
54 |
| - | |
| 54 | + | |
55 | 55 |
| |
56 |
| - | |
57 |
| - | |
58 |
| - | |
59 |
| - | |
60 |
| - | |
61 |
| - | |
62 |
| - | |
| 56 | + | |
| 57 | + | |
63 | 58 |
| |
64 | 59 |
| |
65 | 60 |
| |
|
Lines changed: 1 addition & 1 deletion
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
29 | 29 |
| |
30 | 30 |
| |
31 | 31 |
| |
32 |
| - | |
| 32 | + | |
33 | 33 |
| |
34 | 34 |
|
Lines changed: 3 additions & 42 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
26 | 26 |
| |
27 | 27 |
| |
28 | 28 |
| |
29 |
| - | |
30 |
| - | |
31 |
| - | |
32 | 29 |
| |
33 |
| - | |
34 |
| - | |
35 |
| - | |
| 30 | + | |
| 31 | + | |
36 | 32 |
| |
37 | 33 |
| |
38 | 34 |
| |
39 | 35 |
| |
40 | 36 |
| |
41 | 37 |
| |
42 | 38 |
| |
43 |
| - | |
44 |
| - | |
45 |
| - | |
46 |
| - | |
47 |
| - | |
48 |
| - | |
49 |
| - | |
50 |
| - | |
51 |
| - | |
52 |
| - | |
53 |
| - | |
54 |
| - | |
55 |
| - | |
56 |
| - | |
57 |
| - | |
58 |
| - | |
59 |
| - | |
60 |
| - | |
61 |
| - | |
62 |
| - | |
63 |
| - | |
| 39 | + | |
64 | 40 |
| |
65 | 41 |
| |
66 | 42 |
| |
| |||
72 | 48 |
| |
73 | 49 |
| |
74 | 50 |
| |
75 |
| - | |
76 |
| - | |
77 |
| - | |
78 |
| - | |
79 |
| - | |
80 |
| - | |
81 | 51 |
| |
82 |
| - | |
83 |
| - | |
84 |
| - | |
85 | 52 |
| |
86 |
| - | |
87 |
| - | |
88 |
| - | |
89 |
| - | |
90 |
| - | |
91 |
| - | |
92 | 53 |
|
Lines changed: 58 additions & 0 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
| 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 | + | |
| 38 | + | |
| 39 | + | |
| 40 | + | |
| 41 | + | |
| 42 | + | |
| 43 | + | |
| 44 | + | |
| 45 | + | |
| 46 | + | |
| 47 | + | |
| 48 | + | |
| 49 | + | |
| 50 | + | |
| 51 | + | |
| 52 | + | |
| 53 | + | |
| 54 | + | |
| 55 | + | |
| 56 | + | |
| 57 | + | |
| 58 | + |
Lines changed: 1 addition & 1 deletion
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
232 | 232 |
| |
233 | 233 |
| |
234 | 234 |
| |
235 |
| - | |
| 235 | + | |
236 | 236 |
| |
237 | 237 |
| |
238 | 238 |
| |
|
Lines changed: 0 additions & 78 deletions
This file was deleted.
0 commit comments