| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2024-07-18 | fix some clang compiler warnings | graham sanderson | |
| 2024-03-04 | correct rp2040 host with max3421 | hathach | |
| 2023-12-26 | allow rp2040 to use max3421e as host controller | hathach | |
| - 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) | |||
| 2023-11-23 | move make.mk and rules.mk to build_system/make | hathach | |
| 2023-09-28 | fix build with new freertos host example | hathach | |
| 2023-09-27 | Merge branch 'master' into add-max3421-esp32 | hathach | |
| 2023-09-27 | change hcd_int_handler(rhport, in_isr) signature: add in_isr | hathach | |
| change tuh_int_handler() to take in_isr as optional parameter (default = true) | |||
| 2023-09-25 | adding host/cdc_msc_hid_freertos example | hathach | |
| 2023-09-11 | wrap up build cmake & make support for max3421, to enable the Host driver, ↵ | hathach | |
| 'MAX3421_HOST=1' must be added as part of make/cmake command | |||
| 2023-08-07 | Merge pull request #2151 from kilograham/rp2040_build_fixes | Ha Thach | |
| Fix build issues when building for RP2040 from pico-examples/pico-sdk. | |||
| 2023-08-04 | Merge branch 'master' into enhance-bsp | hathach | |
| 2023-08-03 | rename hw/bsp/board.h to board_api.h | hathach | |
| 2023-07-31 | enable USBMC for uno r4, add board_init_after_tusb() API | hathach | |
| add BOARD_UPPERCASE for board detection | |||
| 2023-07-18 | Fix build issues when building for RP2040 from pico-examples/pico-sdk. | graham sanderson | |
| * include_guard requires GLOBAL as family.cmake is included in multiple non child places * the following recently added check is suprfluous (family_configure_host_example for rp2040 should do this already), and breaks if pico_pio_usb is not avaialble, so i have removed # Add pico-pio-usb for rp2040 since user can choose to run on bit-banging host if(FAMILY STREQUAL "rp2040") family_add_pico_pio_usb(${PROJECT}) endif() * added new familt_example_missing_dependency functino to print missing dependency warning, so pico-examples can override it to be less in your face, and also more contextual to pico-examples | |||
| 2023-07-07 | enable host example for ra | hathach | |
| 2023-06-27 | rework cmake with rtos support add RTOS to ↵ | hathach | |
| family_configure_device/host/dual_example() | |||
| 2023-06-16 | renam OPT_MCU_MIMXRT to OPT_MCU_MIMXRT1XXX | hathach | |
| fix build util with makefile | |||
| 2023-05-08 | build host examples with imx | hathach | |
| 2023-05-07 | update all device cmake example for imx | hathach | |
| 2023-03-24 | update host example to use new tuh mem macros | hathach | |
| 2023-03-22 | fine tune CFG_TUH_HID value | hathach | |
| 2023-03-21 | change meaning of CFG_TUH_HID to total number of HID interfaces supported. | hathach | |
| - 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 | |||
| 2023-03-17 | Merge branch 'master' into portability | hathach | |
| 2023-03-17 | fix trailing space and new line | hathach | |
| temporarily disable codespell | |||
| 2023-03-17 | update host example, add pio-pico-usb for rp2040 | hathach | |
| 2023-03-13 | Avoid spamming out endpoint on connect | James Smith | |
| 2023-03-13 | Removed tabs from host hid_controller example | James Smith | |
| 2023-03-13 | Updated host hid_controller example to demo tuh_hid_send_report | James Smith | |
| 2023-03-06 | integrate top.mk into make.mk | hathach | |
| 2023-02-06 | * don't force dependency on pico-pio-usb submodule | graham sanderson | |
| * suppress compiler warning/errors especially in pico-pio-usb * disable use of pico-pio-usb on gcc 11.3+ for now as it doesn't compile | |||
| 2022-11-28 | update pico-pio-usb submodule and its warnings suppress | hathach | |
| 2022-11-23 | allow all host examples to use pico-pio-usb for rp2040 | hathach | |
| 2022-11-21 | host msc example work well with rp2040 pio-usb | hathach | |
| 2022-11-21 | house keeping | hathach | |
| 2022-09-13 | Remove unreachable code | Ben Avison | |
| IAR generates warning Pe111 'statement is unreachable'. In a couple of cases, replace return statements with TU_ATTR_FALLTHROUGH; because some compilers apparently can't figure out that the return statements are unreachable but do whinge about an imagined fall-through without them! | |||
| 2022-07-12 | RP@040: rework CMake for compiler warnings | graham sanderson | |
| 2022-07-11 | fix rt1050 evk build with latest mcu-sdk | hathach | |
| 2022-07-11 | bump up mcux-sdk for rt11xx, add back OPT_MCU_MIMXRT11XX | hathach | |
| 2022-06-27 | fix all warnings with host rp2040 | hathach | |
| 2022-06-06 | update all host examples | hathach | |
| 2022-05-20 | Minor cleanup of RP2040 code post addition of Pico-PIO_USB | graham 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-10 | cmake lib rename | hathach | |
| 2022-05-10 | move pio-usb init to family_configure_pio_usb_example() to stay compatible | hathach | |
| 2022-03-11 | remove usbh_control.c | hathach | |
| 2022-01-19 | enable ci build for RX65X host example | hathach | |
| update comment for unit not ready 3a-00 additional sense | |||
| 2022-01-05 | Unify skip and only logic for build scripts | Scott Shawcroft | |
| And switch to a single file that can include mcu, family or board. | |||
| 2021-12-07 | skip host ci for tm4c due to sram overflow | hathach | |
| 2021-12-07 | move hcd_musb.c include to family.mk | hathach | |
| 2021-12-03 | Merge branch 'master' into add_hcd_for_msp_exp432e401y | Ha Thach | |
| 2021-12-02 | fix ci | hathach | |
