| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2025-10-28 | fix Identifiers that start with '__' or '_[A-Z]' are reserved. | hathach | |
| fix compiling with nuc family | |||
| 2025-10-14 | improve cmake warning flags, fix various warnings in examples | hathach | |
| 2025-10-06 | remove dcd_esp32sx which is replaced by dwc2 | hathach | |
| 2025-09-27 | audio: simplify alt settings management | HiFiPhile | |
| Signed-off-by: HiFiPhile <[email protected]> | |||
| 2025-08-02 | fix tud_audio_set_itf_close_EP_cb() typo | hathach | |
| 2025-07-08 | minor reformat code | hathach | |
| 2025-07-08 | Merge remote-tracking branch 'origin/master' into xfer_isr | hathach | |
| # Conflicts: # examples/device/audio_4_channel_mic_freertos/src/main.c # examples/device/audio_test_freertos/src/main.c # src/class/audio/audio_device.c | |||
| 2025-07-03 | Merge branch 'master' into fork/HiFiPhile/stm32_cache | hathach | |
| 2025-06-26 | audio_device: Fix data IN endpoints with implicit feedback | milek7 | |
| 2025-06-14 | audio: remove FIFO mutex, as audio streaming is always single producer ↵ | HiFiPhile | |
| single consumer Signed-off-by: HiFiPhile <[email protected]> | |||
| 2025-06-14 | audio: move ISO transfers into xfer_isr | HiFiPhile | |
| Signed-off-by: HiFiPhile <[email protected]> | |||
| 2025-06-13 | audio: buffer macro update | HiFiPhile | |
| Signed-off-by: HiFiPhile <[email protected]> | |||
| 2025-05-29 | uac2: remove support fifo | HiFiPhile | |
| Signed-off-by: HiFiPhile <[email protected]> | |||
| 2025-03-15 | Add ctrl buffer alignment. | HiFiPhile | |
| Signed-off-by: HiFiPhile <[email protected]> | |||
| 2025-02-24 | add tuh_midi_descriptor_cb() | hathach | |
| 2024-11-30 | Reformat audio class. | HiFiPhile | |
| Signed-off-by: HiFiPhile <[email protected]> | |||
| 2024-11-30 | Fix typo. | HiFiPhile | |
| Signed-off-by: HiFiPhile <[email protected]> | |||
| 2024-11-30 | Update audio class with dcache support. | HiFiPhile | |
| Signed-off-by: HiFiPhile <[email protected]> | |||
| 2024-11-27 | Fix missing protoype warning, change TUD_EPBUF_TYPE_DEF order (#2889) | Ha Thach | |
| * change TUD_EPBUF_TYPE_DEF order * add and fix -Wmissing-prototypes warnings for cmake (skip make) | |||
| 2024-11-18 | Merge pull request #2866 from HiFiPhile/uac_fix | Ha Thach | |
| Fix 2 UAC issue | |||
| 2024-11-02 | Improve EP IN flow control. | HiFiPhile | |
| Signed-off-by: HiFiPhile <[email protected]> | |||
| 2024-11-02 | Fix align issue of _audiod_fct.alt_setting. | HiFiPhile | |
| Signed-off-by: HiFiPhile <[email protected]> | |||
| 2024-10-15 | RP2040 Compile Errors | pschatzmann | |
| 2024-07-28 | audiod_function_t clean up. | HiFiPhile | |
| 2024-07-28 | Merge branch 'master' of https://github.com/hathach/tinyusb into rx_fb | HiFiPhile | |
| 2024-07-18 | UAC2: Fix memclr on driver reset. | HiFiPhile | |
| 2024-07-05 | add u for unsigned | hathach | |
| 2024-07-05 | Revert "audio.h: fix error ISO C restricts enumerator values to range of 'int'" | Ha Thach | |
| 2024-06-28 | audio.h: fix error ISO C restricts enumerator values to range of 'int' | Davide Gerhard | |
| fix error ~/dsp/libs/tinyusb/src/class/audio/audio.h:643:53: error: ISO C restricts enumerator values to range of 'int' before C23 [-Werror=pedantic] 643 | AUDIO_CHANNEL_CONFIG_RAW_DATA = 0x80000000, // TODO | ^~~~~~~~~~ compilation terminated due to -Wfatal-errors. Closes: https://github.com/hathach/tinyusb/issues/2690 | |||
| 2024-06-28 | audio_device.c: fix strict-overflow warning with gcc >= 12 | Davide Gerhard | |
| Fix the following error ~/libs/tinyusb/src/class/audio/audio_device.c:1493:23: error: assuming pointer wraparound does not occur when comparing P +- C1 with P +- C2 [-Werror=strict-overflow] 1493 | while (p_desc < p_desc_end) | ~~~~~~~^~~~~~~~~~~~ compilation terminated due to -Wfatal-errors. | |||
| 2024-05-12 | Fix HS playback on OSX. | HiFiPhile | |
| 2024-05-12 | Tested 3 bytes feedback work on OSX. | HiFiPhile | |
| 2024-05-11 | Fix CI. | HiFiPhile | |
| 2024-05-11 | Optimize SOF. | HiFiPhile | |
| 2024-05-11 | Merge remote-tracking branch 'remotes/tinyusb/master' into rx_fb | HiFiPhile | |
| 2024-05-11 | Always send 4 bytes feedback despite 10.14 format (Apple wtf ?!) | HiFiPhile | |
| 2024-05-09 | Convert to bit-field since it's more reliable. | HiFiPhile | |
| 2024-05-08 | Add callback to to set feedback format correction at runtime. | HiFiPhile | |
| 2024-05-08 | Reorganize feedback documentation. | HiFiPhile | |
| 2024-05-08 | Fix cycle based feedback calculation. | HiFiPhile | |
| 2024-05-08 | Migrate to weak default implementation. | HiFiPhile | |
| 2024-04-26 | Guard ep_fb with usbd_edpt_claim(). | HiFiPhile | |
| 2024-04-26 | Add tu_static to global variables. | HiFiPhile | |
| 2024-04-26 | UAC2: Implement feedback by fifo counting. | HiFiPhile | |
| 2024-04-25 | uac2: return on clear_feature. | HiFiPhile | |
| 2024-04-08 | Merge pull request #1835 from MasterQ32/otg_bringup | Ha Thach | |
| Implements deinit functions for host/device mode switch | |||
| 2024-04-08 | add class driver deinit | hathach | |
| 2024-04-02 | Move endpoint alloc define to tusb_mcu.h | HiFiPhile | |
| 2024-04-01 | UAC2: fix mounted condition. | HiFiPhile | |
| 2024-04-01 | UAC2: refactor interrupt endpoint support. | HiFiPhile | |
