| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2023-11-24 | Merge pull request #2340 from hathach/hid-set-protocol-pr | Ha Thach | |
| Hid set protocol pr | |||
| 2023-11-24 | minor update | hathach | |
| 2023-11-24 | add tuh_hid_set_default_protocol() to set default USB host HID protocol | Xudong Zheng | |
| 2023-11-24 | rename to CFG_TUD_BTH_HISTORICAL_COMPATIBLE, move CFG_TUD_BTH_ISO_ALT_COUNT ↵ | hathach | |
| to tusb_option.h and mandatory for BTH driver | |||
| 2023-11-24 | Merge branch 'master' into bth | hathach | |
| 2023-11-22 | fix typo in cdc line coding enum | hathach | |
| 2023-11-07 | Add historical EP compatibility to bth class | Antonio Vázquez Blanco | |
| 2023-10-18 | Adjsut blackout time. | Mengsk | |
| 2023-10-17 | Put sw_buf in USB section only if necessary. | HiFiPhile | |
| 2023-10-17 | Fix compile. | HiFiPhile | |
| 2023-10-17 | Add blackout time. | HiFiPhile | |
| 2023-10-17 | Read sample rate directly from control transfer to eliminate callback. | HiFiPhile | |
| 2023-10-17 | Add flow control for IN transfer. | HiFiPhile | |
| 2023-10-10 | Fix naming nBytesPerSample. | HiFiPhile | |
| 2023-10-10 | Merge branch 'master' of https://github.com/hathach/tinyusb into uac_interl | HiFiPhile | |
| 2023-09-28 | fix esp32 msc example | hathach | |
| 2023-09-19 | Fix cast-align. | HiFiPhile | |
| 2023-09-19 | Fix UAC interleaved copy. | HiFiPhile | |
| 2023-08-15 | Merge pull request #2222 from rppicomidi/fix-2188 | Ha Thach | |
| fix issue 2188: support usbh_app_driver_get_cb() | |||
| 2023-08-15 | more minor clean up | hathach | |
| - also rename usbh_classdriver.h to usbh_pvt.h to consitent with usbd | |||
| 2023-08-14 | UINT16_MAX stdint macro usage | tswan-quasi | |
| 2023-08-14 | min on cdc r/w | tswan-quasi | |
| 2023-08-07 | fix host msc get maxlun not using aligned section memory | hathach | |
| 2023-08-04 | Merge branch 'master' into master | Ha Thach | |
| 2023-08-02 | default class driver log level to CFG_TUH/TUD_LOG_LEVEL allow application to ↵ | hathach | |
| selectively disable usbd/usbh or driver log | |||
| 2023-07-24 | rename CFG_TUSB_MEM_SECTION to CFG_TUD_MEM_SECTION in device stack | hathach | |
| CFG_TUD_MEM_SECTION is default to CFG_TUSB_MEM_SECTION | |||
| 2023-07-20 | improve logging, allow easier to turn off usbd, driver logging | hathach | |
| can be useful when focusing on let's say usbh | |||
| 2023-07-02 | made line ends consistent. | Lars Pötter | |
| 2023-06-28 | Fix minor spelling | Devin Auclair | |
| 2023-06-27 | Merge pull request #2085 from georgeboc/msc-ready-bug-fix | Ha Thach | |
| Fixes bug in tuh_msc_ready | |||
| 2023-06-21 | Merge pull request #2101 from eustas/patch-1 | Ha Thach | |
| Fix typos | |||
| 2023-06-16 | renam OPT_MCU_MIMXRT to OPT_MCU_MIMXRT1XXX | hathach | |
| fix build util with makefile | |||
| 2023-06-15 | Merge pull request #1985 from kkitayam/uvc_bulk | Ha Thach | |
| Add the capability for video class to handle a bulk endpoint in the streaming interface. | |||
| 2023-06-08 | Fix typos | Eugene Kliuchnikov | |
| 2023-05-28 | Fixes bug in tuh_msc_ready | gitlab | |
| 2023-05-25 | fix issue with ftdi host driver with status bytes | hathach | |
| add workflow_dispatch to all ci workflow | |||
| 2023-05-16 | EHCI: fix xfer failed with disconnected device as stalled | hathach | |
| - change CFG_TUH_ENDPOINT_MAX to 16 (max endpoint pair per device) if not defined - change QHD_MAX for EHCI, should be user configurable and more optimized in the future | |||
| 2023-05-16 | correct EHCI reporting failed xfer (instead of stalled) when device is unplugged | hathach | |
| 2023-04-28 | more update to host serial API | hathach | |
| 2023-04-28 | allow call tuh cdc with blocking (callback = NULL) | hathach | |
| - tuh_cdc_set_control_line_state() - tuh_cdc_set_baudrate() - tuh_cdc_set_line_coding() | |||
| 2023-04-28 | improve host serial drivers | hathach | |
| - tuh_control_xfer() update xfer result to user_data if complete callback = NULL (sync/blocking) - refactor host serial driver for acm/ftdi/cp210x | |||
| 2023-04-28 | add aligned(4) for cdc_line_coding_t | hathach | |
| 2023-04-27 | cdc: fix line_coding aligment | Jean-Baptiste Theou | |
| While calling tud_cdc_n_get_line_coding, the structure is copied into the destination. Dump of assembler code for function tud_cdc_n_get_line_coding: 0x000193f4 <+0>: mov.w r2, #2112 @ 0x840 0x000193f8 <+4>: ldr r3, [pc, #20] @ (0x19410 <tud_cdc_n_get_line_coding+28>) 0x000193fa <+6>: mla r0, r2, r0, r3 => 0x000193fe <+10>: ldr.w r3, [r0, #6] 0x00019402 <+14>: str r3, [r1, #0] On some platform (tested on LPC55S28), the address needs to be 4-bytes aligned. Without this, the address is (gdb) p &_cdcd_itf.line_coding $3 = (cdc_line_coding_t *) 0x40100006 <_cdcd_itf+6> which leads to a HardFault. With this fix (gdb) p &_cdcd_itf.line_coding $5 = (cdc_line_coding_t *) 0x40100008 <_cdcd_itf+8> and the function can be called properly Signed-off-by: Jean-Baptiste Theou <[email protected]> | |||
| 2023-04-27 | add tuh_cdc_set_baudrate() | hathach | |
| 2023-04-27 | add code to calculate divisor from baudrate for ftdi | hathach | |
| 2023-04-27 | clean up | hathach | |
| 2023-04-27 | forgot to add cp210x header | hathach | |
| 2023-04-27 | more refactor | hathach | |
| 2023-04-27 | cp210x seems to work well | hathach | |
| 2023-04-27 | more host serial refactor | hathach | |
