Commit 14eb89a
authored
Merge pull request adafruit#10194 from tannewt/update_tinyusb_close_ep
Update TinyUSB and close device endpoints5 files changed
+40
-5
lines changed- .gitignore+8
- .idea/debugServers/rp2040.xml+14
- .idea/debugServers/rp2350.xml+14
- .idea/debugServers/rt1060.xml+13
- .idea/debugServers/rt1064.xml+13
- .idea/debugServers/sam21.xml+13
- .idea/debugServers/sam51.xml+13
- examples/dual/host_info_to_device_cdc/src/main.c+65-57
- examples/host/CMakeLists.txt+1
- examples/host/bare_api/src/main.c+114-140
- examples/host/bare_api/src/tusb_config.h+2-1
- examples/host/cdc_msc_hid/src/cdc_app.c+1-1
- examples/host/cdc_msc_hid/src/hid_app.c+1-2
- examples/host/cdc_msc_hid/src/main.c+6-10
- examples/host/cdc_msc_hid/src/tusb_config.h+2-1
- examples/host/cdc_msc_hid_freertos/src/cdc_app.c+1-1
- examples/host/cdc_msc_hid_freertos/src/main.c-6
- examples/host/cdc_msc_hid_freertos/src/msc_app.c+1-1
- examples/host/cdc_msc_hid_freertos/src/tusb_config.h+2-1
- examples/host/device_info/src/main.c+1-1
- examples/host/device_info/src/tusb_config.h+3-3
- examples/host/hid_controller/src/hid_app.c+6-11
- examples/host/hid_controller/src/tusb_config.h+2-1
- examples/host/midi_rx/CMakeLists.txt+32
- examples/host/midi_rx/Makefile+13
- examples/host/midi_rx/only.txt+20
- examples/host/midi_rx/src/main.c+123
- examples/host/midi_rx/src/tusb_config.h+118
- examples/host/msc_file_explorer/src/msc_app.c+2
- examples/host/msc_file_explorer/src/tusb_config.h+2-1
- hw/bsp/family_support.cmake+1-5
- hw/bsp/imxrt/boards/mimxrt1015_evk/board/clock_config.c+2-2
- hw/bsp/imxrt/boards/mimxrt1015_evk/board/clock_config.h+33-33
- hw/bsp/imxrt/boards/mimxrt1015_evk/board/pin_mux.c+27-8
- hw/bsp/imxrt/boards/mimxrt1015_evk/board/pin_mux.h+19-11
- hw/bsp/imxrt/boards/mimxrt1015_evk/mimxrt1015_evk.mex+44-19
- hw/bsp/imxrt/boards/mimxrt1064_evk/board/clock_config.c+2-2
- hw/bsp/imxrt/boards/mimxrt1064_evk/board/clock_config.h+50-50
- hw/bsp/imxrt/boards/mimxrt1064_evk/board/pin_mux.c+2-11
- hw/bsp/imxrt/boards/mimxrt1064_evk/board/pin_mux.h+1
- hw/bsp/imxrt/boards/mimxrt1064_evk/mimxrt1064_evk.mex+16-20
- hw/bsp/imxrt/boards/mimxrt1170_evkb/board/clock_config.c+2-2
- hw/bsp/imxrt/boards/mimxrt1170_evkb/board/pin_mux.c+37-19
- hw/bsp/imxrt/boards/mimxrt1170_evkb/board/pin_mux.h+17-10
- hw/bsp/imxrt/boards/mimxrt1170_evkb/mimxrt1170_evkb.mex+43-30
- hw/bsp/imxrt/family.c+6-4
- hw/bsp/imxrt/family.cmake-4
- hw/bsp/rp2040/family.c+3-1
- hw/bsp/rp2040/family.cmake+1
- hw/bsp/same70_xplained/board.mk+8
- src/CMakeLists.txt+1
- src/class/audio/audio.h+1
- src/class/audio/audio_device.c+12-16
- src/class/cdc/cdc_device.c+20-18
- src/class/cdc/cdc_device.h+16-6
- src/class/cdc/cdc_host.c+2-2
- src/class/cdc/cdc_host.h+4-4
- src/class/midi/README_midi_host.md+111
- src/class/midi/midi.h+76-87
- src/class/midi/midi_device.c+20-27
- src/class/midi/midi_host.c+622
- src/class/midi/midi_host.h+193
- src/class/vendor/vendor_device.c+1-1
- src/common/tusb_common.h+26-16
- src/common/tusb_fifo.c+5-2
- src/common/tusb_private.h+6-6
- src/common/tusb_types.h+10-4
- src/device/usbd.c+15-7
- src/host/hcd.h+3
- src/host/usbh.c+64-33
- src/host/usbh.h+22-6
- src/host/usbh_pvt.h-4
- src/portable/analog/max3421/hcd_max3421.c+18-22
- src/portable/analog/max3421/hcd_max3421.h+63
- src/portable/ehci/ehci.c+139-120
- src/portable/ehci/ehci.h+153-161
- src/portable/mentor/musb/hcd_musb.c+5
- src/portable/nxp/khci/hcd_khci.c+5
- src/portable/nxp/lpc_ip3511/dcd_lpc_ip3511.c+3-2
- src/portable/ohci/ohci.c+5-1
- src/portable/raspberrypi/pio_usb/hcd_pio_usb.c+5
- src/portable/raspberrypi/rp2040/dcd_rp2040.c+35-22
- src/portable/raspberrypi/rp2040/hcd_rp2040.c+5-1
- src/portable/renesas/rusb2/hcd_rusb2.c+5
- src/portable/synopsys/dwc2/hcd_dwc2.c+6-1
- src/portable/template/hcd_template.c+14-35
- src/tinyusb.mk+1
- src/tusb.c+21-6
- src/tusb.h+4
- test/hil/hil_test.py+27-25
- test/hil/tinyusb.json+24-5
- tools/get_deps.py+1-1
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
39 | 39 | | |
40 | 40 | | |
41 | 41 | | |
| 42 | + | |
42 | 43 | | |
43 | 44 | | |
44 | 45 | | |
| |||
49 | 50 | | |
50 | 51 | | |
51 | 52 | | |
| 53 | + | |
| 54 | + | |
| 55 | + | |
| 56 | + | |
| 57 | + | |
| 58 | + | |
52 | 59 | | |
53 | 60 | | |
54 | 61 | | |
| |||
64 | 71 | | |
65 | 72 | | |
66 | 73 | | |
| 74 | + | |
67 | 75 | | |
68 | 76 | | |
69 | 77 | | |
| |||
75 | 83 | | |
76 | 84 | | |
77 | 85 | | |
| 86 | + | |
78 | 87 | | |
79 | 88 | | |
80 | 89 | | |
| |||
86 | 95 | | |
87 | 96 | | |
88 | 97 | | |
| 98 | + | |
89 | 99 | | |
90 | 100 | | |
91 | 101 | | |
| |||
97 | 107 | | |
98 | 108 | | |
99 | 109 | | |
| 110 | + | |
100 | 111 | | |
101 | 112 | | |
102 | 113 | | |
| |||
109 | 120 | | |
110 | 121 | | |
111 | 122 | | |
| 123 | + | |
112 | 124 | | |
113 | 125 | | |
114 | 126 | | |
| |||
121 | 133 | | |
122 | 134 | | |
123 | 135 | | |
| 136 | + | |
124 | 137 | | |
125 | 138 | | |
126 | 139 | | |
| |||
134 | 147 | | |
135 | 148 | | |
136 | 149 | | |
| 150 | + | |
137 | 151 | | |
138 | 152 | | |
139 | 153 | | |
| |||
147 | 161 | | |
148 | 162 | | |
149 | 163 | | |
| 164 | + | |
150 | 165 | | |
151 | 166 | | |
152 | 167 | | |
| |||
171 | 186 | | |
172 | 187 | | |
173 | 188 | | |
| 189 | + | |
174 | 190 | | |
175 | 191 | | |
176 | 192 | | |
| |||
197 | 213 | | |
198 | 214 | | |
199 | 215 | | |
| 216 | + | |
200 | 217 | | |
201 | 218 | | |
202 | 219 | | |
| |||
228 | 245 | | |
229 | 246 | | |
230 | 247 | | |
| 248 | + | |
231 | 249 | | |
232 | 250 | | |
233 | 251 | | |
| |||
277 | 295 | | |
278 | 296 | | |
279 | 297 | | |
| 298 | + | |
280 | 299 | | |
281 | 300 | | |
282 | 301 | | |
| |||
310 | 329 | | |
311 | 330 | | |
312 | 331 | | |
| 332 | + | |
313 | 333 | | |
314 | 334 | | |
315 | 335 | | |
| |||
327 | 347 | | |
328 | 348 | | |
329 | 349 | | |
| 350 | + | |
330 | 351 | | |
331 | 352 | | |
332 | 353 | | |
| |||
343 | 364 | | |
344 | 365 | | |
345 | 366 | | |
| 367 | + | |
346 | 368 | | |
347 | 369 | | |
348 | 370 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
13 | 13 | | |
14 | 14 | | |
15 | 15 | | |
| 16 | + | |
16 | 17 | | |
17 | 18 | | |
18 | 19 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
49 | 49 | | |
50 | 50 | | |
51 | 51 | | |
| 52 | + | |
| 53 | + | |
| 54 | + | |
| 55 | + | |
52 | 56 | | |
53 | | - | |
54 | | - | |
55 | | - | |
| 57 | + | |
| 58 | + | |
| 59 | + | |
| 60 | + | |
| 61 | + | |
| 62 | + | |
| 63 | + | |
| 64 | + | |
| 65 | + | |
| 66 | + | |
| 67 | + | |
56 | 68 | | |
57 | 69 | | |
58 | 70 | | |
| |||
0 commit comments