Skip to content

Commit

Permalink
bump: tinyusb
Browse files Browse the repository at this point in the history
  • Loading branch information
luftaquila committed Aug 8, 2024
1 parent 0725100 commit f441d40
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion device/firmware/tinyusb
Submodule tinyusb updated 32 files
+7 −52 .github/workflows/hil_test.yml
+8 −7 .idea/cmake.xml
+1 −1 examples/device/cdc_uac2/src/uac2_app.c
+1 −1 examples/device/uac2_headset/src/main.c
+33 −0 examples/device/uac2_speaker_fb/CMakeLists.txt
+11 −0 examples/device/uac2_speaker_fb/Makefile
+8 −0 examples/device/uac2_speaker_fb/skip.txt
+69 −0 examples/device/uac2_speaker_fb/src/audio_debug.py
+52 −0 examples/device/uac2_speaker_fb/src/common_types.h
+505 −0 examples/device/uac2_speaker_fb/src/main.c
+90 −0 examples/device/uac2_speaker_fb/src/quirk_os_guessing.c
+75 −0 examples/device/uac2_speaker_fb/src/quirk_os_guessing.h
+168 −0 examples/device/uac2_speaker_fb/src/tusb_config.h
+295 −0 examples/device/uac2_speaker_fb/src/usb_descriptors.c
+82 −0 examples/device/uac2_speaker_fb/src/usb_descriptors.h
+7 −1 hw/bsp/family_support.cmake
+57 −28 hw/bsp/lpc55/family.c
+14 −0 hw/bsp/stm32f1/boards/stm32f103ze_iar/board.cmake
+97 −0 hw/bsp/stm32f1/boards/stm32f103ze_iar/board.h
+13 −0 hw/bsp/stm32f1/boards/stm32f103ze_iar/board.mk
+34 −1 hw/bsp/stm32f1/family.c
+17 −17 hw/bsp/stm32f1/family.mk
+356 −207 src/class/audio/audio_device.c
+59 −41 src/class/audio/audio_device.h
+0 −1 src/device/usbd.c
+6 −6 src/device/usbd.h
+254 −381 src/portable/st/stm32_fsdev/dcd_stm32_fsdev.c
+2 −16 src/portable/st/stm32_fsdev/fsdev_ch32.h
+23 −27 src/portable/st/stm32_fsdev/fsdev_stm32.h
+67 −43 src/portable/st/stm32_fsdev/fsdev_type.h
+109 −108 test/hil/hil_test.py
+7 −0 test/hil/rpi.json

0 comments on commit f441d40

Please sign in to comment.