| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2023-01-23 | rp2040: export hw_endpoint_start_next_buffer() and hw_endpoint_lock_update() | Jonathan Bell | |
| The next change to the driver requires the export of these functions. Leave the lock unimplemented for now. Also move hw_set and hw_clear aliases into the top-level header file. | |||
| 2022-11-30 | more clean up | hathach | |
| 2022-11-30 | white spaces | hathach | |
| 2022-11-23 | Fix RP2040 Issue 1721 | rppicomidi | |
| 2022-11-04 | fix -wconversion-int and add minor comment | hathach | |
| 2022-11-04 | Merge branch 'master' into rp2040-hcd-bulk | Ha Thach | |
| 2022-10-05 | Fix typo for log in dcd_rp2040.c | mingpepe | |
| 2022-09-13 | [rp2040] Wrap GCC pragmas in #ifdef __GNUC__ | Ben Avison | |
| IAR generates warning Pe161 'unrecognized #pragma'. | |||
| 2022-09-13 | Don't assume ints automatically convert to enums | Ben Avison | |
| IAR generates warning Pe188 'enumerated type mixed with another type'. | |||
| 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-09-12 | [rp2040] Explicit cast value of `hw_set_alias` | Ben Avison | |
| Some compilers don't support the GNU extension `typeof` so their definitions of `hw_set_alias` can't inherit their type from their argument, and the best we can do is have `hw_set_alias` act the same as `hw_set_alias_untyped`. This requires an explicit cast when the macro is used instead, otherwise IAR generates error Pe132 'expression must have pointer-to-struct-or-union type but it has type "void *"'. The same goes for `hw_clear_alias`. | |||
| 2022-09-12 | [rp2040] Remove non-portable return statements | Ben Avison | |
| IAR generates error Pe118 'a void function may not return a value'. | |||
| 2022-09-07 | Fix bug #1628 by preventing shared irq slots for filling up | jmark1m | |
| 2022-07-12 | RP@040: rework CMake for compiler warnings | graham sanderson | |
| 2022-06-30 | rp2040 enable SOF as resumed signal when remote wakeup | hathach | |
| 2022-06-27 | use forloop to avoid -Warray-bounds with host setup packet | hathach | |
| 2022-06-27 | fix all warnings with host rp2040 | hathach | |
| 2022-06-21 | Merge pull request #1509 from liamfraser/rp2040_hcd_improvements | Ha Thach | |
| RP2040 HCD Improvements (Hub + Keyboard + Mouse working) | |||
| 2022-06-18 | Merge pull request #1518 from mingpepe/master | Ha Thach | |
| Fix typo for log format | |||
| 2022-06-17 | rp2040: use shared IRQ handlers, so user can also hook the USB IRQ | graham sanderson | |
| 2022-06-17 | Fix typo for log format | mingpepe | |
| 2022-06-16 | rp2040: make moving 1K of code into RAM optional - and off by default | graham sanderson | |
| 2022-06-13 | hcd_rp2040 improvements: | Liam Fraser | |
| - Stall now has priority over other interrupt responses - Delete eunused hcd_edpt_busy - Assert !ep->active when trying to start a new xfer - Assert !ep->active when handling buff_status bits - Set ep->xferred_len to 8 once a setup packet is finished so the data structure is accurate | |||
| 2022-06-08 | make all hcd/dcd function used in isr into ram with ↵ | hathach | |
| __no_inline_not_in_flash_func() for faster irq handling result is 1KB of code moved from rom -> ram | |||
| 2022-06-08 | add tuh_configure() for port/dynamic host behavior config | hathach | |
| 2022-05-31 | Merge pull request #1381 from hathach/add-sof-isr | Ha Thach | |
| Add SOF IRQ Handler | |||
| 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 | clean up | hathach | |
| 2022-04-28 | more clean up | hathach | |
| 2022-04-27 | clean up | hathach | |
| 2022-04-26 | minor clean up | hathach | |
| 2022-04-26 | improve pio usb endpoint handler | hathach | |
| 2022-04-26 | follow pio usb changes | hathach | |
| 2022-04-22 | more with pio usb | hathach | |
| 2022-04-22 | keep up with pio usb | hathach | |
| 2022-04-18 | clean up pio driver | hathach | |
| 2022-04-17 | hcd_rp2040: Add bulk in/out+interrupt out support. | Skyler Mansfield | |
| Added support for allocating hw_endpoints for non-interrupt endpoints. Allow endpoints to be used in either direction by updating bit checks. | |||
| 2022-04-16 | support pio dcd endpiont stall | hathach | |
| 2022-04-15 | pio device works well | hathach | |
| 2022-04-14 | catch up with pio lib | hathach | |
| 2022-04-08 | proof of concpet that device pio-usb work with host pio-usb | hathach | |
| 2022-04-05 | add need_pre for pio usb, but not work out well | hathach | |
| 2022-04-03 | correct pio usb speed, and close device | hathach | |
| 2022-04-03 | use pio usb host init | hathach | |
| 2022-04-03 | clean up hcd pio | hathach | |
| 2022-04-02 | extracting hw root port | hathach | |
| 2022-04-01 | update to use pio hw endpoint | hathach | |
| 2022-04-01 | rename pio to pio_usb | hathach | |
| 2022-04-01 | hid example work well | hathach | |
| 2022-04-01 | pio usb control work well including stall response | hathach | |
