File tree
5 files changed
+43
-3
lines changed- docs
- lib
- ports/atmel-samd/boards/seeeduino_wio_terminal
5 files changed
+43
-3
lines changedLines changed: 13 additions & 0 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
485 | 485 |
| |
486 | 486 |
| |
487 | 487 |
| |
| 488 | + | |
| 489 | + | |
| 490 | + | |
| 491 | + | |
| 492 | + | |
| 493 | + | |
| 494 | + | |
| 495 | + | |
| 496 | + | |
| 497 | + | |
| 498 | + | |
| 499 | + | |
| 500 | + | |
488 | 501 |
| |
489 | 502 |
| |
490 | 503 |
| |
|
- .github/ISSUE_TEMPLATE/bug_report.md+1-1
- .github/workflows/build.yml+16-3
- README.md+1-1
- docs/boards.md+5-2
- docs/getting_started.md+102-12
- examples/device/cdc_msc/.skip.MCU_SAMD11
- examples/device/cdc_msc_freertos/.skip.MCU_SAMD11
- examples/device/dynamic_configuration/.skip.MCU_SAMD11
- examples/device/hid_composite_freertos/.skip.MCU_SAMD11
- examples/device/msc_dual_lun/.skip.MCU_SAMD11
- examples/device/net_lwip_webserver/.skip.MCU_SAMD11
- examples/host/cdc_msc_hid/.only.MCU_LPC175X_6X
- examples/host/cdc_msc_hid/.only.MCU_LPC177X_8X
- examples/host/cdc_msc_hid/.only.MCU_LPC18XX
- examples/host/cdc_msc_hid/.only.MCU_LPC40XX
- examples/host/cdc_msc_hid/.only.MCU_LPC43XX
- examples/host/cdc_msc_hid/Makefile+26
- examples/host/cdc_msc_hid/ses/lpc175x_6x/lpc175x_6x.emProject+15-8
- examples/host/cdc_msc_hid/ses/lpc18xx/lpc18xx.emProject+18-8
- examples/host/cdc_msc_hid/ses/lpc40xx/lpc40xx.emProject+16-8
- examples/host/cdc_msc_hid/ses/lpc43xx/lpc43xx.emProject+12-7
- examples/host/cdc_msc_hid/src/main.c+83-18
- examples/host/cdc_msc_hid/src/msc_app.c+19-17
- examples/host/cdc_msc_hid/src/tusb_config.h+7-20
- examples/make.mk-1
- examples/readme.md-104
- hw/bsp/board.c+3
- hw/bsp/board_mcu.h+1-1
- hw/bsp/ea4088qs/board.mk+7-4
- hw/bsp/ea4088qs/ea4088qs.c+11-1
- hw/bsp/ea4357/board.mk+6-5
- hw/bsp/ea4357/ea4357.c+67-43
- hw/bsp/itsybitsy_nrf52840/board.mk+64
- hw/bsp/itsybitsy_nrf52840/itsybitsy_nrf52840.c+225
- hw/bsp/itsybitsy_nrf52840/nrf52840_s140_v6.ld+38
- hw/bsp/lpcxpresso1769/lpcxpresso1769.c+13-6
- hw/bsp/mbed1768/mbed1768.c+7-1
- hw/bsp/mcb1800/board.mk+2-2
- hw/bsp/mcb1800/mcb1800.c+63-52
- hw/bsp/mimxrt1010_evk/mimxrt1010_evk.c+1-1
- hw/bsp/mimxrt1015_evk/mimxrt1015_evk.c+1-1
- hw/bsp/mimxrt1020_evk/mimxrt1020_evk.c+1-1
- hw/bsp/mimxrt1050_evkb/mimxrt1050_evkb.c+2-2
- hw/bsp/mimxrt1060_evk/mimxrt1060_evk.c+2-2
- hw/bsp/mimxrt1064_evk/mimxrt1064_evk.c+2-2
- hw/bsp/ngx4330/board.mk+4-3
- hw/bsp/ngx4330/ngx4330.c+11-5
- hw/bsp/samd11_xplained/board.mk+53
- hw/bsp/samd11_xplained/samd11_xplained.c+152
- hw/bsp/samd11_xplained/samd11d14am_flash.ld+143
- hw/bsp/samg55xplained/board.mk+3-3
- hw/bsp/teensy_40/teensy40.c+2-2
- hw/mcu/microchip+1-1
- src/class/cdc/cdc_device.c+62-31
- src/class/cdc/cdc_device.h+4-2
- src/class/cdc/cdc_host.c+2-3
- src/class/hid/hid_device.c+8-5
- src/class/hid/hid_device.h+1-1
- src/class/hid/hid_host.c+40-44
- src/class/hid/hid_host.h+2-8
- src/class/midi/midi_device.c+48-24
- src/class/midi/midi_device.h+1-1
- src/class/msc/msc_host.c+5-4
- src/class/msc/msc_host.h+1-1
- src/class/vendor/vendor_host.c+1-1
- src/device/dcd.h+3-3
- src/device/usbd.c+75-1
- src/device/usbd_pvt.h+7
- src/host/ehci/ehci.c+36-6
- src/host/ehci/ehci.h+8-2
- src/host/hcd.h+13-6
- src/host/hub.c+1-1
- src/host/ohci/ohci.c+15-2
- src/host/ohci/ohci.h+2
- src/host/usbh.c+76-31
- src/host/usbh.h+8-1
- src/osal/osal.h+3-3
- src/osal/osal_none.h+8-8
- src/portable/microchip/samd/dcd_samd.c+3-2
- src/portable/nordic/nrf5x/dcd_nrf5x.c+1-1
- src/portable/st/synopsys/dcd_synopsys.c+31-7
- src/tusb_option.h+2-1
- test/test/support/tusb_config.h+3
- tools/build_all.py+29-12
Lines changed: 23 additions & 0 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
31 | 31 |
| |
32 | 32 |
| |
33 | 33 |
| |
| 34 | + | |
34 | 35 |
| |
35 | 36 |
| |
| 37 | + | |
| 38 | + | |
| 39 | + | |
36 | 40 |
| |
37 | 41 |
| |
38 | 42 |
| |
| |||
106 | 110 |
| |
107 | 111 |
| |
108 | 112 |
| |
| 113 | + | |
| 114 | + | |
| 115 | + | |
| 116 | + | |
| 117 | + | |
| 118 | + | |
| 119 | + | |
| 120 | + | |
| 121 | + | |
| 122 | + | |
| 123 | + | |
| 124 | + | |
| 125 | + | |
| 126 | + | |
| 127 | + | |
| 128 | + | |
| 129 | + | |
| 130 | + | |
| 131 | + | |
109 | 132 |
| |
110 | 133 |
| |
111 | 134 |
| |
|
Lines changed: 4 additions & 0 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
27 | 27 |
| |
28 | 28 |
| |
29 | 29 |
| |
| 30 | + | |
| 31 | + | |
| 32 | + | |
| 33 | + | |
30 | 34 |
| |
31 | 35 |
| |
32 | 36 |
|
Lines changed: 2 additions & 2 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
87 | 87 |
| |
88 | 88 |
| |
89 | 89 |
| |
90 |
| - | |
| 90 | + | |
91 | 91 |
| |
92 |
| - | |
| 92 | + | |
93 | 93 |
| |
94 | 94 |
| |
95 | 95 |
| |
|
0 commit comments