| Age | Commit message (Collapse) | Author |
|
|
|
fix compiling with nuc family
|
|
|
|
|
|
# Conflicts:
# README.rst
# docs/reference/index.rst
# src/class/cdc/cdc_device.c
# src/class/cdc/cdc_host.c
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
- fix warnings build hcd max3421 with rp2040
- add tinyusb_host_max3421 target for rp2040 cmake, -DMAX3421_HOST=1
will enable this
- add max3421 driver implementation for rp2040 family
- update tusb_config for host to allow easy enable host selection for
rp2040 (default/pio-usb/max3421)
|
|
|
|
'MAX3421_HOST=1' must be added as part of make/cmake command
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
- previously CFG_TUH_HID is max number of interfaces per device which is
rather limited and consume more resources than needed.
- change hid host instance in API to index
|
|
|
|
|
|
|
|
|
|
Host: Add support for multi-level usb hubs
|
|
|
|
|
|
|
|
|
|
|
|
|
|
run as proof of concept
|
|
separate dev0 from _usbh_devices pool to save sram
|
|
|
|
|
|
RP2040 double buffer
|
|
|
|
|
|
|
|
- remove tuh_n_hid_n_get_report()
- usbh auto queue get report and invoke callback when received data
|
|
|
|
adding hid parser
|
|
|
|
add usbh_get_enum_buf
|
|
|
|
|