esp_wifi: support wifi6 features and add esp32c6 libs(34dba92c)

This commit is contained in:
lvshisheng
2022-12-29 12:56:33 +08:00
parent c0deded274
commit 1eb9c86d74
47 changed files with 2 additions and 2 deletions

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.

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.

BIN
esp32c6/libcoexist.a Normal file

Binary file not shown.

BIN
esp32c6/libcore.a Normal file

Binary file not shown.

BIN
esp32c6/libespnow.a Normal file

Binary file not shown.

BIN
esp32c6/libmesh.a Normal file

Binary file not shown.

BIN
esp32c6/libnet80211.a Normal file

Binary file not shown.

BIN
esp32c6/libpp.a Normal file

Binary file not shown.

BIN
esp32c6/libsmartconfig.a Normal file

Binary file not shown.

BIN
esp32c6/libwapi.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.

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.

View File

@ -1,10 +1,10 @@
#!/bin/bash #!/bin/bash
for dir in esp32 esp32s2 esp32c3 esp32s3 esp32c2; do for dir in esp32 esp32s2 esp32c3 esp32s3 esp32c2 esp32c6; do
if [ $dir = esp32 ]; then if [ $dir = esp32 ]; then
TOOLCHAIN="xtensa-esp32-elf" TOOLCHAIN="xtensa-esp32-elf"
elif [ $dir = esp32s2 ]; then elif [ $dir = esp32s2 ]; then
TOOLCHAIN="xtensa-esp32s2-elf" TOOLCHAIN="xtensa-esp32s2-elf"
elif [ $dir = esp32c3 -o $dir = esp32c2 ]; then elif [ $dir = esp32c3 -o $dir = esp32c2 -o $dir = esp32c6 ]; then
TOOLCHAIN="riscv32-esp-elf" TOOLCHAIN="riscv32-esp-elf"
elif [ $dir = esp32s3 ]; then elif [ $dir = esp32s3 ]; then
TOOLCHAIN="xtensa-esp32s3-elf" TOOLCHAIN="xtensa-esp32s3-elf"