mirror of
https://github.com/espressif/esp32-wifi-lib.git
synced 2026-08-16 08:08:02 +00:00
mesh/ps: add mesh network power save function (2bd4864)
This commit is contained in:
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
+7
-7
@@ -2,45 +2,45 @@
|
||||
for dir in esp32 esp32s2; do
|
||||
if [ -d "$dir" ]; then
|
||||
cd $dir
|
||||
git status libphy.a | grep "[modified renamed]" >/dev/null 2>&1
|
||||
git status libphy.a | grep "modified" >/dev/null 2>&1
|
||||
if [ $? -eq 0 ]; then
|
||||
echo $dir/libphy.a fixed
|
||||
xtensa-esp32-elf-objcopy --redefine-sym ets_printf=phy_printf libphy.a
|
||||
fi
|
||||
|
||||
git status librtc.a | grep "[modified renamed]" >/dev/null 2>&1
|
||||
git status librtc.a | grep "modified" >/dev/null 2>&1
|
||||
if [ $? -eq 0 ]; then
|
||||
echo $dir/librtc.a fixed
|
||||
xtensa-esp32-elf-objcopy --redefine-sym ets_printf=rtc_printf librtc.a
|
||||
fi
|
||||
|
||||
git status libsmartconfig.a | grep "[modified renamed]" >/dev/null 2>&1
|
||||
git status libsmartconfig.a | grep "modified" >/dev/null 2>&1
|
||||
if [ $? -eq 0 ]; then
|
||||
echo $dir/libsmartconfig.a fixed
|
||||
xtensa-esp32-elf-objcopy --redefine-sym printf=sc_printf libsmartconfig.a
|
||||
fi
|
||||
|
||||
git status libpp.a | grep "[modified renamed]" >/dev/null 2>&1
|
||||
git status libpp.a | grep "modified" >/dev/null 2>&1
|
||||
if [ $? -eq 0 ]; then
|
||||
echo $dir/libpp.a fixed
|
||||
xtensa-esp32-elf-objcopy --redefine-sym printf=pp_printf libpp.a
|
||||
fi
|
||||
|
||||
git status libnet80211.a | grep "[modified renamed]" >/dev/null 2>&1
|
||||
git status libnet80211.a | grep "modified" >/dev/null 2>&1
|
||||
if [ $? -eq 0 ]; then
|
||||
echo $dir/libnet80211.a fixed
|
||||
xtensa-esp32-elf-objcopy --redefine-sym printf=net80211_printf libnet80211.a
|
||||
fi
|
||||
|
||||
|
||||
git status libcore.a | grep "[modified renamed]" >/dev/null 2>&1
|
||||
git status libcore.a | grep "modified" >/dev/null 2>&1
|
||||
if [ $? -eq 0 ]; then
|
||||
echo $dir/libcore.a fixed
|
||||
xtensa-esp32-elf-objcopy --redefine-sym printf=core_printf libcore.a
|
||||
xtensa-esp32-elf-objcopy --redefine-sym ets_printf=core_printf libcore.a
|
||||
fi
|
||||
|
||||
git status libcoexist.a | grep "[modified renamed]" >/dev/null 2>&1
|
||||
git status libcoexist.a | grep "modified" >/dev/null 2>&1
|
||||
if [ $? -eq 0 ]; then
|
||||
echo $dir/libcoexist.a fixed
|
||||
xtensa-esp32-elf-objcopy --redefine-sym ets_printf=coexist_printf libcoexist.a
|
||||
|
||||
Reference in New Issue
Block a user