-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
180 changed files
with
8,232 additions
and
46,986 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
#!/bin/sh | ||
TINYUSB_DIR=../../../tinyusb | ||
rm -rf lib/tinyusb/* | ||
mkdir lib/tinyusb/osal | ||
mkdir lib/tinyusb/class | ||
mkdir lib/tinyusb/portable | ||
mkdir lib/tinyusb/portable/synopsys | ||
mkdir lib/tinyusb/portable/st | ||
cp -R $TINYUSB_DIR/src/class/cdc lib/tinyusb/class | ||
cp -R $TINYUSB_DIR/src/common lib/tinyusb | ||
cp -R $TINYUSB_DIR/src/device lib/tinyusb | ||
cp $TINYUSB_DIR/src/osal/osal.h lib/tinyusb/osal | ||
cp $TINYUSB_DIR/src/osal/osal_none.h lib/tinyusb/osal | ||
cp -R $TINYUSB_DIR/src/portable/synopsys/dwc2 lib/tinyusb/portable/synopsys | ||
cp -R $TINYUSB_DIR/src/portable/st/stm32_fsdev lib/tinyusb/portable/st | ||
cp $TINYUSB_DIR/src/*.c lib/tinyusb | ||
cp $TINYUSB_DIR/src/*.h lib/tinyusb |
Oops, something went wrong.