| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2020-10-10 | Dynamically check STM32F3 IRQ remap option | Niklas Hauser | |
| 2020-10-03 | Change CFG_TUSB_CONFIG_FILE mechanism to improve header file scanning | Niklas Hauser | |
| 2020-10-03 | Allow overwriting TU_ASSERT etc macros | Niklas Hauser | |
| 2020-10-03 | Use tu_printf instead of printf | Niklas Hauser | |
| 2020-10-03 | Use C++11 static_assert when available | Niklas Hauser | |
| 2020-09-23 | Merge pull request #512 from mzero/fix-midi-sysex | Ha Thach | |
| Fix a bug in writing SysEx messages. | |||
| 2020-09-15 | nrf52: Fix edpt_dma_start() wrong condition check | Jerzy Kasenberg | |
| Operator < used in while condition was obviously incorrect. Loop starts with checking if unsigned variable is less then 0. This condition is always false. This reverses condition to follow intention of of the code. | |||
| 2020-09-14 | Merge pull request #508 from hathach/fix-edpt-race | Ha Thach | |
| Fix edpt xfer race condition | |||
| 2020-09-14 | more const | hathach | |
| 2020-09-14 | cdc device: claim endpoint before checking fifo availability | hathach | |
| - add pre-check to reduce mutex lock in usbd_edpt_claim | |||
| 2020-09-13 | Update midi_device.c | Mark Lentczner | |
| Fix a bug in writing SysEx messages. At the start of a new USB packet (4 bytes), while in the middle of a SysEx, the code mistakenly set the buffer length to 4, not the target length. As a consequence, the 3rd and 4th bytes from the last packet were included, after every byte of the SysEx after the first packet of three. The fix is simple, as it was just a typo, as can bee seen from the other branches in the same section of if/else statements: At the start of a new packet, the code should set up the target length... the buffer length should be left at 2 (as set on line 180). | |||
| 2020-09-13 | correct the TUD_HID_REPORT_DESC_GAMEPAD | hathach | |
| 2020-09-12 | typo | hathach | |
| 2020-09-11 | clean up | hathach | |
| 2020-09-10 | update claim edpt for hid and midi | hathach | |
| 2020-09-09 | typo | hathach | |
| 2020-09-09 | clean up | hathach | |
| 2020-09-09 | update cdc edpt read | hathach | |
| 2020-09-09 | introduce optional usbd_edpt_claim, usbd_edpt_release which can be used to ↵ | hathach | |
| gain exclusive access to usbd_edpt_xfer | |||
| 2020-09-04 | clean up | hathach | |
| 2020-09-03 | more hid host work | hathach | |
| 2020-09-03 | fix #449 remove obsolete pipehandle from hid host | hathach | |
| 2020-09-03 | rename tuh_isr/hcd_isr to tuh_int_handler/hcd_int_handler | hathach | |
| 2020-09-02 | revert to use float-abi | hathach | |
| define __USE_CMSIS instead of __USE_LPCOPEN will have startup enable FPU on startup properly. Although it is only relevant to lpx43/40 series, change all to __USE_CMSIS for consistency | |||
| 2020-09-01 | add more logging to host stack | hathach | |
| tested host with lpc4357, don't use fpu with lpc m4 since it seems to cause hardfault (stack does not make use of fpu anyway). | |||
| 2020-09-01 | Merge branch 'master' into update-host | hathach | |
| 2020-08-24 | fix typo | hathach | |
| 2020-08-24 | improve midi | hathach | |
| - fix #436 tud_midi_rx_cb() not invoked - fix xfer_cb() not handle ep in - add ZLP if needed | |||
| 2020-08-24 | Merge pull request #486 from kasjer/kasjer/add-endpoint-close-to-synopsys | Ha Thach | |
| Add dcd_edpt_close() to synopsys | |||
| 2020-08-22 | add OPT_MCU_SAMD11 | hathach | |
| skip ci build for example that need more ROM/RAM could fit into SAMD11 | |||
| 2020-08-21 | Merge pull request #434 from gh2o/master | Ha Thach | |
| Add TX callback to CDC device | |||
| 2020-08-20 | Slight optimization for cdc tx refill | Gavin Li | |
| 2020-08-20 | Smarter CDC TX refill logic | Gavin Li | |
| 2020-08-14 | Add dcd_edpt_close() to synopsys | Jerzy Kasenberg | |
| Endpoint close was implemented only in one driver so far. This function is needed for interfaces with several alternate settings. The way FIFO is allocated in dcd_edpt_open() allows to correctly close only one IN endpoint (the one that was opened last). | |||
| 2020-08-12 | Fix synopsys fifo flush during stall | Jerzy Kasenberg | |
| Wrong FIFO was flushed in dcd_edpt_stall(). (epnum - 1) should only be used when accessing DIEPTXF registers. For DIEPCTL and GRSTCTL epnum is correct index. | |||
| 2020-08-11 | use usbd_edpt_open in bth driver | hathach | |
| 2020-08-07 | update note for app driver list mustbe accesible at all time. | hathach | |
| 2020-08-07 | allow application driver to overwrite built-in one | hathach | |
| - position application driver before built-in - remove dcd.h from public include. | |||
| 2020-08-07 | Merge branch 'master' into add-app-driver | hathach | |
| 2020-08-05 | Merge pull request #476 from kasjer/kasjer/fix-synopsys-fix-iso-frame-bit | Ha Thach | |
| Fix synopsys odd/even frame bit for IN ISO endpoints | |||
| 2020-08-04 | Fix synopsys odd/even frame bit for IN ISO endpoints | Jerzy Kasenberg | |
| For ISO endpoint driver has to specify when data is to be transmitted (odd or even frame). Currently code was not updating this bit resulting in data being sent every other frame. If interval was 1ms full data packed was sent every 2ms, and ZLP was sent in between. | |||
| 2020-08-04 | manually submit unplugged event for nrf dcd_disconnect() | hathach | |
| 2020-08-04 | Merge pull request #478 from hathach/move-dcdconnect-to-dcdinit | Ha Thach | |
| Move pull-up enabling to dcd_init() instead of usbd | |||
| 2020-08-02 | Merge pull request #472 from hathach/fix-msp430-warning | Ha Thach | |
| fix msp430 gcc 9.2.0 warning | |||
| 2020-08-01 | enable pull-up in dcd_init() instead of usbd | hathach | |
| 2020-08-01 | Merge pull request #477 from hathach/fix-nrf-unplugg-isr-event | Ha Thach | |
| correct isr context for nrf DCD_EVENT_UNPLUGGED | |||
| 2020-08-01 | correct isr context for nrf DCD_EVENT_UNPLUGGED | hathach | |
| also rename debug lookup to prevent conflict | |||
| 2020-07-31 | Fix synopsys size check for ISO endpoint | Jerzy Kasenberg | |
| Constraint was incorrect for ISO endpoint as stated in TODO. | |||
| 2020-07-29 | fix nested extern declaration of 'SystemCoreClock' [-Werror=nested-externs] | hathach | |
| 2020-07-29 | fix strict prototype | hathach | |
