summaryrefslogtreecommitdiff
path: root/examples
AgeCommit message (Collapse)Author
2022-06-27fix all device examples warningshathach
2022-06-27Merge branch 'master' into add-more-warningshathach
2022-06-27change report len in hid API from uint8_t to uint16_thathach
since HS interrupt endpoint can be up to 1024, 8-bit is not enough. affected APIs are: - tud_hid_n_report() / tud_hid_report() - tud_hid_report_complete_cb()
2022-06-27clean up usbd log levelhathach
2022-06-27fix most warnings with rp2040 -wconversionhathach
2022-06-24USBTMC: Update test python code to use the new pyvisa namespace, and other ↵NConrad
misc fixes
2022-06-24fix redundant-decls warnings by usbd/usbhhathach
2022-06-24suppress redundant-decls warnings for freertos exampleshathach
2022-06-24add more warning option, also fix -Wconversion with rp2040hathach
-Wuninitialized, -Wunused, -Wredundant-decls
2022-06-21Update USBTMC descriptors to support high speed, set USB version to 2.0.0 ↵NConrad
for all cases.
2022-06-17correct bulk size for highspeed endpoint in dynamic_configuration and usbtmc ↵hathach
exmaples
2022-06-16Merge pull request #1480 from Ryzee119/multihub_rebaseHa Thach
Host: Add support for multi-level usb hubs
2022-06-16add note for recursive calls of process_device_unplugged() in case of hubhathach
2022-06-06update all host exampleshathach
2022-06-06more example updatehathach
2022-06-06clean up example to use CFG_TUD_ENABLED + CFG_TUD_MAX_SPEED instead of ↵hathach
CFG_TUSB_RHPORT0_MODE
2022-06-03remove static port defined for device/hosthathach
2022-06-02rhport argument in usbd_ API() is not used (always use the initialized port)hathach
remove the usage of TUD_OPT_RHPORT in class driver
2022-06-02rework make freertos port handlingRafael Silva
this allows ports to specify a freertos port outside the FreeRTOS-Kernel lib directory, which would otherwise not be possible Signed-off-by: Rafael Silva <[email protected]>
2022-06-01rename board specific macro for examplehathach
- BOARD_DEVICE/HOST_RHPORT_NUM to BOARD_TUD/H_RHPORT - BOARD_DEVICE/HOST_RHPORT_SPEED to BOARD_TUD/H_MAX_SPEED
2022-06-01remove cmake compile macro for net example (use lwipopts.h instead)hathach
2022-05-28Fix printf long int compiler errorLeon Loeser
2022-05-21Merge branch 'master' into ch32v307Ha Thach
2022-05-20Minor cleanup of RP2040 code post addition of Pico-PIO_USBgraham sanderson
* Removed some compiler warnings, and cleaned out unnecessary warning suppression from CMake suppress_tinyusb_warnings() * Made explicit family_configure_dual_usb_example() for DUAL mode examples as family_configure_target() may not generally be called multiple times for the same target * Renamed library pico_pio_usb to tinyusb_picio_pio_usb to be clearer and avoid conflict if someone already has a pico_pio_usb in their project * Added family_add_pico_pio_usb() method for adding Pico-PIO_SUB support to an existing example * Allowed tinyusb_pico_pio_usb to be added to regular apps using the Pico SDK
2022-05-16print addres of mouse inputhathach
2022-05-11clean up examplehathach
2022-05-10clean uphathach
2022-05-10cmake lib renamehathach
2022-05-10move pio-usb init to family_configure_pio_usb_example() to stay compatiblehathach
2022-05-10rename host/hid_to_cdc to dual/host_hid_to_device_cdchathach
2022-05-06fix incorrect total number of interfacehathach
2022-04-29fix ci buildhathach
2022-04-29configure hid_to_cdc example to build with rp2040 with pio usb as hosthathach
2022-04-27clean uphathach
2022-04-27add TU_ATTR_FAST_FUNC for rp2040 __not_in_flash() sectionhathach
2022-04-21Merge branch 'master' into pio-hosthathach
2022-04-20update example for better cdc echohathach
2022-04-20add note for tud_task() behavior in freertos examplehathach
2022-04-20add tud_task_ext(), tuh_task_ext() as exteneded version that take timeout ↵hathach
and in_isr also allow exit tud_task,tuh_task after processing all events for running other background task for user
2022-04-20fix freertos issue when 1 tick > 1 mshathach
2022-04-15pio device works wellhathach
2022-04-14catch up with pio libhathach
2022-04-08proof of concpet that device pio-usb work with host pio-usbhathach
2022-03-22Skip freertos for ch32v307Greg Davill
2022-03-20Merge branch 'master' into pio-hosthathach
2022-03-19move code aroundhathach
2022-03-19rename usbh_edpt_open() to tuh_edpt_open()hathach
2022-03-19get bare example working with hid devicehathach
2022-03-19add parse config descriptor to examplehathach
move usbh_edpt_open() to public API, remove rhport from its signature
2022-03-18implement tuh_edpt_xfer() for non-controlhathach