Skip to content
This repository has been archived by the owner on Dec 11, 2022. It is now read-only.

Commit

Permalink
updated TinyUSB submodule
Browse files Browse the repository at this point in the history
  • Loading branch information
majbthrd committed Feb 16, 2021
1 parent 1db85ae commit 4bd1cbc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pico-debug.hzp
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
batch_build_configurations="THUMB Release - SRAM;THUMB Release - XIP"
build_intermediate_directory="./_build/$(ProjectName) $(Configuration)"
build_output_directory="./_build/$(ProjectName) $(Configuration)"
c_preprocessor_definitions=""
c_preprocessor_definitions="static_assert=_Static_assert;PICO_DEFAULT_UART_INSTANCE=uart0;__unused=__attribute__((unused))"
c_user_include_directories=".;./rp2040/;$(PackagesDir)/CMSIS_5/CMSIS/Core/Include;./CMSIS_5/CMSIS/DAP/Firmware/Include"
gcc_entry_point="boot_entry"
package_dependencies="CMSIS;Cortex_M_Generic" />
Expand Down
2 changes: 1 addition & 1 deletion tinyusb
Submodule tinyusb updated 37 files
+18 −1 .github/workflows/build.yml
+48 −4 .github/workflows/trigger.yml
+1 −0 .gitignore
+1 −1 README.md
+70 −0 changelog.md
+2 −2 docs/boards.md
+0 −0 examples/device/dfu_runtime/CMakeLists.txt
+0 −0 examples/device/dfu_runtime/Makefile
+1 −1 examples/device/dfu_runtime/src/main.c
+1 −1 examples/device/dfu_runtime/src/tusb_config.h
+0 −0 examples/device/dfu_runtime/src/usb_descriptors.c
+6 −0 examples/device/dynamic_configuration/src/main.c
+106 −56 examples/device/hid_composite/src/main.c
+4 −3 examples/device/hid_composite/src/usb_descriptors.c
+2 −0 examples/device/hid_composite/src/usb_descriptors.h
+93 −43 examples/device/hid_composite_freertos/src/main.c
+6 −5 examples/device/hid_composite_freertos/src/usb_descriptors.c
+3 −1 examples/device/hid_composite_freertos/src/usb_descriptors.h
+6 −6 examples/device/hid_multiple_interface/src/usb_descriptors.c
+6 −0 examples/device/midi_test/src/main.c
+45 −43 examples/device/webusb_serial/src/main.c
+4 −0 examples/rules.mk
+5 −0 hw/bsp/board.h
+2 −2 src/class/dfu/dfu_rt_device.c
+1 −1 src/class/dfu/dfu_rt_device.h
+91 −0 src/class/hid/hid.h
+35 −12 src/class/hid/hid_device.c
+37 −16 src/class/hid/hid_device.h
+38 −10 src/class/midi/midi_device.c
+68 −46 src/device/usbd.c
+1 −0 src/device/usbd.h
+4 −14 src/device/usbd_control.c
+2 −0 src/osal/osal.h
+130 −0 src/osal/osal_rtthread.h
+6 −2 src/portable/raspberrypi/rp2040/dcd_rp2040.c
+1 −1 src/tusb.h
+4 −3 src/tusb_option.h

0 comments on commit 4bd1cbc

Please sign in to comment.