Skip to content

Commit 142f81e

Browse files
committed
Proposal: replace fsp files with patched versions provided by us
1 parent 5d51b06 commit 142f81e

File tree

2 files changed

+18
-0
lines changed

2 files changed

+18
-0
lines changed

extras/e2studioProjects/Santiago/fsp_to_arduino.sh

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,15 @@ else
1313
echo "already commented!"
1414
fi
1515

16+
mkdir -p fsp_patched
17+
cd fsp_patched
18+
ln -s ../../../tinyusb/hw/mcu/renesas/fsp/ra/ .
19+
cd ..
20+
21+
set +e
22+
find ra -type f | xargs -I{} cp fsp_patched/{} {}
23+
set -e
24+
1625
cd Debug
1726
make clean
1827
make -j$(nproc)

extras/e2studioProjects/portenta_h33_lib/fsp_to_arduino.sh

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,15 @@ else
1313
echo "already commented!"
1414
fi
1515

16+
mkdir -p fsp_patched
17+
cd fsp_patched
18+
ln -s ../../../tinyusb/hw/mcu/renesas/fsp/ra/ .
19+
cd ..
20+
21+
set +e
22+
find ra -type f | xargs -I{} cp fsp_patched/{} {}
23+
set -e
24+
1625
cd Debug
1726
make clean
1827
make -j$(nproc)

0 commit comments

Comments
 (0)