File tree
12 files changed
+931
-210
lines changed- lib
- ports/nrf
- common-hal/usb_hid
- usb
12 files changed
+931
-210
lines changed- examples/device/device_virtual_com/src/tusb_config.h-1
- examples/device/nrf52840/segger/nrf52840.emProject+2-1
- examples/device/nrf52840/src/main.c+68-10
- examples/device/nrf52840/src/msc_device_app.c+32-48
- examples/device/nrf52840/src/msc_device_app.h-2
- examples/device/nrf52840/src/msc_device_ramdisk.c+7-5
- examples/device/nrf52840/src/tusb_config.h+56-29
- examples/device/nrf52840/src/tusb_descriptors.c+25-2
- examples/obsolete/device/src/keyboard_device_app.c+8-8
- examples/obsolete/device/src/mouse_device_app.c+4-9
- examples/obsolete/device/src/msc_device_app.c+9-77
- examples/obsolete/device/src/msc_device_ramdisk.c+2-2
- examples/obsolete/device/src/msc_device_romdisk.c+2-2
- examples/obsolete/device/src/tusb_config.h+2-3
- examples/obsolete/host/src/msc_cli.c+2
- examples/obsolete/host/src/msc_cli.h+2
- hw/bsp/board.h-1
- hw/bsp/lpcxpresso1769/board_lpcxpresso1769.c+1-1
- hw/bsp/pca10056/board_pca10056.c+62-18
- hw/bsp/pca10056/board_pca10056.h+2
- src/class/cdc/cdc_device.c+6-7
- src/class/custom/custom_device.c+4-2
- src/class/custom/custom_device.h+3-1
- src/class/hid/hid.h+134-110
- src/class/hid/hid_device.c+485-159
- src/class/hid/hid_device.h+263-87
- src/class/hid/hid_host.c+1-1
- src/class/msc/msc.h+64-40
- src/class/msc/msc_device.c+195-84
- src/class/msc/msc_device.h+44-51
- src/class/msc/msc_host.c+2-2
- src/common/tusb_common.h+9-16
- src/common/tusb_compiler.h+7-7
- src/common/tusb_error.h+3
- src/common/tusb_timeout.h+30-8
- src/common/tusb_types.h+22
- src/common/tusb_verify.h+2
- src/device/dcd.h+1
- src/device/usbd.c+47-32
- src/device/usbd.h+12-4
- src/device/usbd_auto_desc.c+247-221
- src/device/usbd_pvt.h+5
- src/host/ehci/ehci.c+4-5
- src/host/ohci/ohci.c-1
- src/portable/no 67E6 rdic/nrf5x/dcd_nrf5x.c+19-1
- src/portable/nordic/nrf5x/hal_nrf5x.c+4-48
- src/portable/nordic/nrf5x/nrf_drv_usbd_errata.h
- src/portable/nxp/lpc11xx_lpc13xx/dcd_lpc_11uxx_13uxx.c+1-2
- src/portable/nxp/lpc17xx/dcd_lpc175x_6x.c+1-1
- src/portable/nxp/lpc17xx/hal_lpc175x_6x.c+2-2
- src/portable/nxp/lpc43xx_lpc18xx/dcd_lpc43xx.c+1-2
- src/portable/nxp/lpc43xx_lpc18xx/hal_lpc43xx.c+6-6
- src/tusb.c+2-2
- src/tusb.h+2-2
- src/tusb_option.h+30-16
- tests/lpc175x_6x/test/test_usbd.c+1-1
- tests/lpc18xx_43xx/test/host/hid/test_hidh_keyboard.c+2-2
- tests/lpc18xx_43xx/test/host/hid/test_hidh_mouse.c+1-1
- tests/lpc18xx_43xx/test/host/msc/test_msc_host.c+1-1
- tests/support/tusb_config.h+2-3
- tools/windows_cdc_driver/tusb_usbser.inf+108
Lines changed: 24 additions & 18 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
102 | 102 |
| |
103 | 103 |
| |
104 | 104 |
| |
105 |
| - | |
106 | 105 |
| |
107 | 106 |
| |
108 | 107 |
| |
| |||
115 | 114 |
| |
116 | 115 |
| |
117 | 116 |
| |
| 117 | + | |
118 | 118 |
| |
119 | 119 |
| |
120 | 120 |
| |
121 | 121 |
| |
122 | 122 |
| |
123 |
| - | |
124 |
| - | |
125 |
| - | |
126 |
| - | |
127 |
| - | |
128 |
| - | |
129 |
| - | |
130 |
| - | |
131 |
| - | |
132 |
| - | |
133 |
| - | |
134 |
| - | |
135 |
| - | |
136 |
| - | |
137 |
| - | |
138 |
| - | |
139 | 123 |
| |
140 | 124 |
| |
141 | 125 |
| |
| |||
219 | 203 |
| |
220 | 204 |
| |
221 | 205 |
| |
222 |
| - | |
| 206 | + | |
| 207 | + | |
| 208 | + | |
| 209 | + | |
| 210 | + | |
| 211 | + | |
| 212 | + | |
| 213 | + | |
| 214 | + | |
| 215 | + | |
| 216 | + | |
| 217 | + | |
| 218 | + | |
| 219 | + | |
| 220 | + | |
| 221 | + | |
| 222 | + | |
| 223 | + | |
| 224 | + | |
| 225 | + | |
| 226 | + | |
| 227 | + | |
| 228 | + | |
223 | 229 |
| |
224 | 230 |
| |
225 | 231 |
| |
|
Lines changed: 88 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 | + | |
| 59 | + | |
| 60 | + | |
| 61 | + | |
| 62 | + | |
| 63 | + | |
| 64 | + | |
| 65 | + | |
| 66 | + | |
| 67 | + | |
| 68 | + | |
| 69 | + | |
| 70 | + | |
| 71 | + | |
| 72 | + | |
| 73 | + | |
| 74 | + | |
| 75 | + | |
| 76 | + | |
| 77 | + | |
| 78 | + | |
| 79 | + | |
| 80 | + | |
| 81 | + | |
| 82 | + | |
| 83 | + | |
| 84 | + | |
| 85 | + | |
| 86 | + | |
| 87 | + | |
| 88 | + |
Lines changed: 94 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 | + | |
| 59 | + | |
| 60 | + | |
| 61 | + | |
| 62 | + | |
| 63 | + | |
| 64 | + | |
| 65 | + | |
| 66 | + | |
| 67 | + | |
| 68 | + | |
| 69 | + | |
| 70 | + | |
| 71 | + | |
| 72 | + | |
| 73 | + | |
| 74 | + | |
| 75 | + | |
| 76 | + | |
| 77 | + | |
| 78 | + | |
| 79 | + | |
| 80 | + | |
| 81 | + | |
| 82 | + | |
| 83 | + | |
| 84 | + | |
| 85 | + | |
| 86 | + | |
| 87 | + | |
| 88 | + | |
| 89 | + | |
| 90 | + | |
| 91 | + | |
| 92 | + | |
| 93 | + | |
| 94 | + |
0 commit comments