mirror of
https://github.com/espressif/esp32-wifi-lib.git
synced 2025-07-15 01:42:38 +08:00
bringup esp32c2 wifi, fully support connectionless traffic with ps and coex (c6eaf9cc)
This commit is contained in:
@ -1,10 +1,10 @@
|
||||
#!/bin/bash
|
||||
for dir in esp32 esp32s2 esp32c3 esp32s3; do
|
||||
for dir in esp32 esp32s2 esp32c3 esp32s3 esp32c2; do
|
||||
if [ $dir = esp32 ]; then
|
||||
TOOLCHAIN="xtensa-esp32-elf"
|
||||
elif [ $dir = esp32s2 ]; then
|
||||
TOOLCHAIN="xtensa-esp32s2-elf"
|
||||
elif [ $dir = esp32c3 ]; then
|
||||
elif [ $dir = esp32c3 -o $dir = esp32c2 ]; then
|
||||
TOOLCHAIN="riscv32-esp-elf"
|
||||
elif [ $dir = esp32s3 ]; then
|
||||
TOOLCHAIN="xtensa-esp32s3-elf"
|
||||
@ -24,6 +24,7 @@ for dir in esp32 esp32s2 esp32c3 esp32s3; do
|
||||
if [ $? -eq 0 ]; then
|
||||
echo $dir/libpp.a fixed
|
||||
$TOOLCHAIN-objcopy --redefine-sym printf=pp_printf libpp.a
|
||||
$TOOLCHAIN-objcopy --redefine-sym ets_printf=pp_printf libpp.a
|
||||
fi
|
||||
|
||||
git status libnet80211.a | grep "modified" >/dev/null 2>&1
|
||||
|
Reference in New Issue
Block a user