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-1examples/device/nrf52840/src/main.c+68-10examples/device/nrf52840/src/msc_device_app.c+32-48examples/device/nrf52840/src/msc_device_app.h-2examples/device/nrf52840/src/msc_device_ramdisk.c+7-5examples/device/nrf52840/src/tusb_config.h+56-29examples/device/nrf52840/src/tusb_descriptors.c+25-2examples/obsolete/device/src/keyboard_device_app.c+8-8examples/obsolete/device/src/mouse_device_app.c+4-9examples/obsolete/device/src/msc_device_app.c+9-77examples/obsolete/device/src/msc_device_ramdisk.c+2-2examples/obsolete/device/src/msc_device_romdisk.c+2-2examples/obsolete/device/src/tusb_config.h+2-3examples/obsolete/host/src/msc_cli.c+2examples/obsolete/host/src/msc_cli.h+2hw/bsp/board.h-1hw/bsp/lpcxpresso1769/board_lpcxpresso1769.c+1-1hw/bsp/pca10056/board_pca10056.c+62-18hw/bsp/pca10056/board_pca10056.h+2src/class/cdc/cdc_device.c+6-7src/class/custom/custom_device.c+4-2src/class/custom/custom_device.h+3-1src/class/hid/hid.h+134-110src/class/hid/hid_device.c+485-159src/class/hid/hid_device.h+263-87src/class/hid/hid_host.c+1-1src/class/msc/msc.h+64-40src/class/msc/msc_device.c+195-84src/class/msc/msc_device.h+44-51src/class/msc/msc_host.c+2-2src/common/tusb_common.h+9-16src/common/tusb_compiler.h+7-7
src/common/tusb_error.h +3src/common/tusb_timeout.h+30-8src/common/tusb_types.h+22src/common/tusb_verify.h+2src/device/dcd.h+1src/device/usbd.c+47-32src/device/usbd.h+12-4src/device/usbd_auto_desc.c+247-221src/device/usbd_pvt.h+5src/host/ehci/ehci.c+4-5src/host/ohci/ohci.c-1src/portable/nordic/nrf5x/dcd_nrf5x.c+19-1src/portable/nordic/nrf5x/hal_nrf5x.c+4-48src/portable/nordic/nrf5x/nrf_drv_usbd_errata.hsrc/portable/nxp/lpc11xx_lpc13xx/dcd_lpc_11uxx_13uxx.c+1-2src/portable/nxp/lpc17xx/dcd_lpc175x_6x.c+1-1src/portable/nxp/lpc17xx/hal_lpc175x_6x.c+2-2src/portable/nxp/lpc43xx_lpc18xx/dcd_lpc43xx.c+1-2src/portable/nxp/lpc43xx_lpc18xx/hal_lpc43xx.c+6-6src/tusb.c+2-2src/tusb.h+2-2src/tusb_option.h+30-16tests/lpc175x_6x/test/test_usbd.c+1-1tests/lpc18xx_43xx/test/host/hid/test_hidh_keyboard.c+2-2tests/lpc18xx_43xx/test/host/hid/test_hidh_mouse.c+1-1tests/lpc18xx_43xx/test/host/msc/test_msc_host.c+1-1tests/support/tusb_config.h+2-3tools/windows_cdc_driver/tusb_usbser.inf+108
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 |
| |
|
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 | + |
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