| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2020-06-15 | update midi | hathach | |
| 2020-06-15 | clean up, update other example config | hathach | |
| 2020-06-14 | cherry pick PR399 commit : Interrupt time improvements | Jan Dümpelmann | |
| 2020-06-14 | overwrite setup packet | hathach | |
| 2020-06-14 | improve usbd log for control transfer | hathach | |
| 2020-06-14 | revert CFG_TUSB_RHPORT0_MODE to previous way | hathach | |
| 2020-06-01 | adding speed detect on bus reset | hathach | |
| 2020-06-01 | allow hs ep open with 512 bytes | hathach | |
| 2020-05-31 | fixed EP0 size to 64 since LS is not supported in device mode | hathach | |
| - set turn-around and report actual speed in Enum Done - add dcd_event_bus_reset() helper to report speed | |||
| 2020-05-31 | able to detect as hs | hathach | |
| 2020-05-27 | try to get synopsys work with OTG HS + external PHY | hathach | |
| 2020-05-27 | adding h743 uart, but not enabled yet since it conflict with OTG_FS2 | 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-26 | wip | hathach | |
| 2020-05-23 | board test work fine | hathach | |
| 2020-05-21 | Merge pull request #416 from hathach/fix-nrf-called-within-critical | Ha Thach | |
| fix nrf hanged (blocking wait) when called within critical section | |||
| 2020-05-21 | fix nrf hanged (blocking wait) when called within critical section | hathach | |
| 2020-05-20 | Merge pull request #414 from hathach/add-queue-is-empty | Ha Thach | |
| added tud_task_event_ready() | |||
| 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-18 | Merge pull request #411 from hathach/fix-cast-align-warning | Ha Thach | |
| enable -Wcast-align | |||
| 2020-05-18 | fix cast-align warning for nuc505 | hathach | |
| 2020-05-17 | temporariyly suppress cast-align warning for net_device and net example | hathach | |
| 2020-05-17 | enable -Wcast-align | hathach | |
| suppress vendor sdk driver at board.mk | |||
| 2020-05-15 | Merge pull request #406 from k0d/stm32f746nucleo | Ha Thach | |
| Add support for stm32f746nucleo board | |||
| 2020-05-15 | Add support for stm32f746nucleo board | Mark Olsson | |
| 2020-05-14 | Merge pull request #405 from hathach/follow-pr404 | Ha Thach | |
| Follow pr404 | |||
| 2020-05-14 | add test for fifo size | hathach | |
| 2020-05-14 | refactor copy to and from fifo | hathach | |
| 2020-05-14 | add unit test for fifo write_n and read_n | hathach | |
| 2020-05-14 | Merge pull request #404 from HiFiPhile/tusb_fifo | Ha Thach | |
| Optimize tusb_fifo transfer speed. | |||
| 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-09 | Update bug_report.md | Ha Thach | |
| 2020-05-08 | Merge pull request #398 from HiFiPhile/iar | Ha Thach | |
| Add IAR EWARM compiler attribute and endian support. | |||
| 2020-05-08 | Add IAR compiler attribute and endian support. | Mengsk | |
| 2020-05-08 | Merge pull request #395 from hathach/define-log-printf | Ha Thach | |
| add CFG_TUSB_DEBUG_PRINTF() for log retargeting | |||
| 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-07 | Merge pull request #391 from kasjer/kasjer/stm32l476disco-clock-configuration | Ha Thach | |
| stm32l476disco clock configuration | |||
| 2020-05-07 | Merge pull request #392 from kasjer/kasjer/change-package-type-to-sdk | Ha Thach | |
| Change mynewt package type to sdk | |||
| 2020-05-07 | Change mynewt package type to sdk | Jerzy Kasenberg | |
| For normal mynewt packages newt tool wants to have specific folder structure. It wants to have src and include directories, and only include (and arch related) directory is added to compiler include search list. Since TinyUSB has different folder structure newt tool will not add anything to -I directives and those would need to be specified as pkg.cflags: "-I@tinyusb/src" Recent change to newt tool allowed to add specific include directories for external (sdk) packages so just including package will add necessary -I to build commands. This commit changes package type to sdk and specifies src as include root for TinyUSB. For older newt tool adding sdk and include_dirs does not break build. | |||
