mirror of
https://github.com/espressif/esp32-wifi-lib.git
synced 2025-05-21 00:47:55 +08:00
feat: Supports external WiFi connections for ESP32p4 and other espressf chips (b3548b43)
This commit is contained in:
BIN
esp32/libcore.a
BIN
esp32/libcore.a
Binary file not shown.
Binary file not shown.
BIN
esp32/libmesh.a
BIN
esp32/libmesh.a
Binary file not shown.
Binary file not shown.
BIN
esp32/libpp.a
BIN
esp32/libpp.a
Binary file not shown.
Binary file not shown.
BIN
esp32/libtarget.a
Normal file
BIN
esp32/libtarget.a
Normal file
Binary file not shown.
BIN
esp32/libwapi.a
BIN
esp32/libwapi.a
Binary file not shown.
BIN
esp32_host/libcore.a
Normal file
BIN
esp32_host/libcore.a
Normal file
Binary file not shown.
BIN
esp32_host/libespnow.a
Normal file
BIN
esp32_host/libespnow.a
Normal file
Binary file not shown.
BIN
esp32_host/libmesh.a
Normal file
BIN
esp32_host/libmesh.a
Normal file
Binary file not shown.
BIN
esp32_host/libnet80211.a
Normal file
BIN
esp32_host/libnet80211.a
Normal file
Binary file not shown.
BIN
esp32_host/libpp.a
Normal file
BIN
esp32_host/libpp.a
Normal file
Binary file not shown.
BIN
esp32_host/libsmartconfig.a
Normal file
BIN
esp32_host/libsmartconfig.a
Normal file
Binary file not shown.
BIN
esp32_host/libtarget.a
Normal file
BIN
esp32_host/libtarget.a
Normal file
Binary file not shown.
BIN
esp32_host/libwapi.a
Normal file
BIN
esp32_host/libwapi.a
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
esp32c2/libpp.a
BIN
esp32c2/libpp.a
Binary file not shown.
Binary file not shown.
BIN
esp32c2/libtarget.a
Normal file
BIN
esp32c2/libtarget.a
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
esp32c3/libpp.a
BIN
esp32c3/libpp.a
Binary file not shown.
Binary file not shown.
BIN
esp32c3/libtarget.a
Normal file
BIN
esp32c3/libtarget.a
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
esp32c6/libpp.a
BIN
esp32c6/libpp.a
Binary file not shown.
Binary file not shown.
BIN
esp32c6/libtarget.a
Normal file
BIN
esp32c6/libtarget.a
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
esp32s2/libpp.a
BIN
esp32s2/libpp.a
Binary file not shown.
Binary file not shown.
BIN
esp32s2/libtarget.a
Normal file
BIN
esp32s2/libtarget.a
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
esp32s3/libpp.a
BIN
esp32s3/libpp.a
Binary file not shown.
Binary file not shown.
BIN
esp32s3/libtarget.a
Normal file
BIN
esp32s3/libtarget.a
Normal file
Binary file not shown.
Binary file not shown.
@ -1,10 +1,10 @@
|
||||
#!/bin/bash
|
||||
for dir in esp32 esp32s2 esp32c3 esp32s3 esp32c2 esp32c6; do
|
||||
for dir in esp32 esp32s2 esp32c3 esp32s3 esp32c2 esp32c6 esp32_host; do
|
||||
if [ $dir = esp32 ]; then
|
||||
TOOLCHAIN="xtensa-esp32-elf"
|
||||
elif [ $dir = esp32s2 ]; then
|
||||
TOOLCHAIN="xtensa-esp32s2-elf"
|
||||
elif [ $dir = esp32c3 -o $dir = esp32c2 -o $dir = esp32c6 ]; then
|
||||
elif [ $dir = esp32c3 -o $dir = esp32c2 -o $dir = esp32c6 -o $dir = esp32_host ]; then
|
||||
TOOLCHAIN="riscv32-esp-elf"
|
||||
elif [ $dir = esp32s3 ]; then
|
||||
TOOLCHAIN="xtensa-esp32s3-elf"
|
||||
@ -34,6 +34,12 @@ for dir in esp32 esp32s2 esp32c3 esp32s3 esp32c2 esp32c6; do
|
||||
$TOOLCHAIN-objcopy --redefine-sym printf=net80211_printf libnet80211.a
|
||||
fi
|
||||
|
||||
git status libtarget.a | grep "modified" >/dev/null 2>&1
|
||||
if [ $? -eq 0 ]; then
|
||||
echo $dir/libtarget.a fixed
|
||||
$TOOLCHAIN-objcopy --redefine-sym printf=target_printf libtarget.a
|
||||
fi
|
||||
|
||||
git status libmesh.a | grep "modified" >/dev/null 2>&1
|
||||
if [ $? -eq 0 ]; then
|
||||
echo $dir/libmesh.a fixed
|
||||
|
Reference in New Issue
Block a user