Update esp32c3/s3 phy lib and add test lib

* esp32c3 phy_version 950,f732b06,Feb 15 2023,18:57:12
* esp32s3 phy_version 540,627b80d,Feb 15 2023,19:01:11
This commit is contained in:
xiehang
2023-01-16 17:33:13 +08:00
parent 1b8e12d3e0
commit c38381964b
11 changed files with 18 additions and 1 deletions

Binary file not shown.

BIN
esp32c3/libbttestmode.a Normal file

Binary file not shown.

Binary file not shown.

BIN
esp32c3/librfate.a Normal file

Binary file not shown.

BIN
esp32c3/librftest.a Normal file

Binary file not shown.

Binary file not shown.

BIN
esp32s3/libbttestmode.a Normal file

Binary file not shown.

Binary file not shown.

BIN
esp32s3/librfate.a Normal file

Binary file not shown.

BIN
esp32s3/librftest.a Normal file

Binary file not shown.

View File

@ -47,7 +47,24 @@ for dir in esp32 esp32s2 esp32c3 esp32s3 esp32h2 esp32c2 esp32c6; do
$TOOLCHAIN-objcopy --redefine-sym ets_printf=phy_printf libphy.a
fi
fi
if [ $dir = esp32c3 ] || [ $dir = esp32s3 ]; then
git status libbttestmode.a | grep "modified\|new file" >/dev/null 2>&1
if [ $? -eq 0 ]; then
echo $dir/libbttestmode.a fixed
$TOOLCHAIN-objcopy --redefine-sym ets_printf=phy_printf libbttestmode.a
fi
git status librfate.a | grep "modified\|new file" >/dev/null 2>&1
if [ $? -eq 0 ]; then
echo $dir/librfate.a fixed
$TOOLCHAIN-objcopy --redefine-sym ets_printf=phy_printf librfate.a
fi
git status librftest.a | grep "modified\|new file" >/dev/null 2>&1
if [ $? -eq 0 ]; then
echo $dir/librftest.a fixed
$TOOLCHAIN-objcopy --redefine-sym ets_printf=phy_printf librftest.a
fi
fi
cd ..
else
echo "$dir does not exist"