mirror of
https://github.com/espressif/esp-phy-lib.git
synced 2025-08-06 11:30:16 +08:00
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:
Binary file not shown.
BIN
esp32c3/libbttestmode.a
Normal file
BIN
esp32c3/libbttestmode.a
Normal file
Binary file not shown.
BIN
esp32c3/libphy.a
BIN
esp32c3/libphy.a
Binary file not shown.
BIN
esp32c3/librfate.a
Normal file
BIN
esp32c3/librfate.a
Normal file
Binary file not shown.
BIN
esp32c3/librftest.a
Normal file
BIN
esp32c3/librftest.a
Normal file
Binary file not shown.
Binary file not shown.
BIN
esp32s3/libbttestmode.a
Normal file
BIN
esp32s3/libbttestmode.a
Normal file
Binary file not shown.
BIN
esp32s3/libphy.a
BIN
esp32s3/libphy.a
Binary file not shown.
BIN
esp32s3/librfate.a
Normal file
BIN
esp32s3/librfate.a
Normal file
Binary file not shown.
BIN
esp32s3/librftest.a
Normal file
BIN
esp32s3/librftest.a
Normal file
Binary file not shown.
@ -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"
|
||||
|
Reference in New Issue
Block a user