| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2020-05-28 | change signature for dfu runtime | hathach | |
| 2020-05-27 | changing usbd driver open() return type, add max_len | hathach | |
| only done with cdc and msc, push this interim for feedback first | |||
| 2020-05-27 | try to get synopsys work with OTG HS + external PHY | hathach | |
| 2020-05-26 | random clean up for tdi | hathach | |
| 2020-05-26 | update h743eval with rhport=1 highspeed | hathach | |
| 2020-05-26 | multiple port support for global otg base | hathach | |
| 2020-05-26 | suporting multiple port (OTG FS + HS) for stm32 | hathach | |
| 2020-05-26 | merge CFG_TUSB_RHPORT1_MODE into CFG_TUSB_RHPORT0_MODE | hathach | |
| each port is 1 byte for easy maintenance | |||
| 2020-05-22 | implement hcd_uframe_number for ohci | hathach | |
| able to get 8 byte descriptors using LPC1769 + base, but failed to reset and set address. | |||
| 2020-05-22 | Add basic UAC2 structure - untested | Reinhard Panhuber | |
| 2020-05-22 | Merge branch 'master' into update-host | hathach | |
| 2020-05-21 | fix nrf hanged (blocking wait) when called within critical section | hathach | |
| 2020-05-20 | fix freeRTOS logic | hathach | |
| 2020-05-20 | remove queue lock/unlock per review | hathach | |
| 2020-05-20 | remove osal_queue_t const qhdl from osal API | hathach | |
| since it doesn't make any differences. | |||
| 2020-05-20 | added tud_task_event_ready() | hathach | |
| to check if there is pending events in the tud task without executing it. Useful to check before entering low power mode with WFI/WFE | |||
| 2020-05-20 | added osal_queue_empty() API | hathach | |
| ported for osal none/freertos/mynewt | |||
| 2020-05-19 | usb0 host on mcb1800 work with fullspeed mode. | hathach | |
| use usbh_edpt_open() to correctly map ep2drv[] | |||
| 2020-05-18 | suppress cast-align warnings for net device driver | hathach | |
| 2020-05-18 | fix cast-align warning for nuc505 | hathach | |
| 2020-05-17 | enable -Wcast-align | hathach | |
| suppress vendor sdk driver at board.mk | |||
| 2020-05-15 | Allow EP0 to use xfer sizes larger than one packet | Jan Dümpelmann | |
| 2020-05-15 | Interrupt time improvements | Jan Dümpelmann | |
| 2020-05-14 | refactor copy to and from fifo | hathach | |
| 2020-05-13 | Optimize FIFO for byte transfer. | Mengsk | |
| Signed-off-by: Mengsk <[email protected]> | |||
| 2020-05-12 | Merge pull request #390 from hathach/detect-nrf-softdevice | Ha Thach | |
| detect if SD is actually present on the flash using SD magic | |||
| 2020-05-08 | Synopsys OUT EP improvements: | Jan Dümpelmann | |
| - Use register based XFRSIZ to determine transfer complete (xfer->queued_len and xfer->short_packet were deleted) - Pop out as many RxFIFO data entries as available within a IRQ call - less application interruption due to XFRC calls | |||
| 2020-05-08 | Add IAR compiler attribute and endian support. | Mengsk | |
| 2020-05-08 | add CFG_TUSB_DEBUG_PRINTF() for log retargeting | hathach | |
| 2020-05-08 | Merge pull request #393 from xobs/fix-debug-warning | Ha Thach | |
| device: fix build warning when CFG_TUSB_DEBUG >= 2 | |||
| 2020-05-07 | device: fix build warning when CFG_TUSB_DEBUG >= 2 | Sean Cross | |
| The function is defined inside of a function body which generates a warning. Circuit Python treats these warnings as errors, and so refuses to build with debugging enabled: ../../lib/tinyusb/src/device/usbd_control.c: In function 'usbd_control_xfer_cb': ../../lib/tinyusb/src/device/usbd_control.c:195:19: error: nested extern declaration of 'usbd_driver_print_control_complete_name' [-Werror=nested-externs] 195 | extern void usbd_driver_print_control_complete_name(bool (*control_complete) (uint8_t, tusb_control_request_t const *)); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ cc1: all warnings being treated as errors make: *** [../../py/mkrules.mk:55: build-simmel/lib/tinyusb/src/device/usbd_control.o] Error 1 Move the declaration to the top of the function to silence this warning. Signed-off-by: Sean Cross <[email protected]> | |||
| 2020-05-05 | detect if SD is actually present on the flash using SD magic | hathach | |
| even with SOFTDEVICE_PRESENT defined, SD may not be present on actual flash. | |||
| 2020-05-04 | Merge pull request #387 from duempel/redesign_transmit_synopsys | Ha Thach | |
| Redesign of Synopsys device transmission | |||
| 2020-05-04 | temporarily remove osal_task_delay() from osal | hathach | |
| - add hcd_uframe_number() API, update EHCI to return uframe number - get host running on ea4357 | |||
| 2020-05-04 | clean up | Jan Dümpelmann | |
| renaming function and variables changing indent size | |||
| 2020-05-04 | clean up things, add makefile for host example | hathach | |
| 2020-05-02 | abstract all UDP_CSR | hathach | |
| 2020-05-02 | clean up | hathach | |
| 2020-05-02 | fix EP0 data toggle issue | hathach | |
| 2020-05-02 | remove toggle walkaround, fix control stall race condition | hathach | |
| 2020-04-30 | fix dcd samd race condition with setup packet | hathach | |
| setup packet can complete together with previous status (in & out). Always make sure to prepare valid buffer for holding setup packet when queuing control status. | |||
| 2020-04-29 | Changed switch into if statements | Jan Dümpelmann | |
| 2020-04-29 | Redesign of Synopsys device transmission | Jan Dümpelmann | |
| Changes: - checking if tx buffer empty interrupt is masked - process more than one packet in isr - mask tx buffer empty just after all bytes were written - use of transmit_fifo_packet instead of transmit_packet | |||
| 2020-04-29 | remove the use of TU_VERIFY_HDLR | hathach | |
| 2020-04-29 | support class drivers implemented by application | hathach | |
| 2020-04-29 | Merge pull request #383 from kasjer/kasjer/fox-busy-flag-race-condition | Ha Thach | |
| Fix endpoint busy flag race condition | |||
| 2020-04-28 | fix typo | hathach | |
| 2020-04-27 | Fix endpoint busy flag race condition | Jerzy Kasenberg | |
| Busy flag was set to true after call to dcd_edpt_xfer(). In some cased it was possible that transfer finished before function ended. In this case busy flag could be set to false before it was set to true. Then setting it to true after dcd_edpt_xfer() made edpoint busy forever. This change marks endpoint as busy before transfer is started to avoid race condition. | |||
| 2020-04-27 | added comment for hw clearing TXFE | hathach | |
| 2020-04-27 | TXFE is read only bit | hathach | |
