esp32c2: optimize rf performace

This commit is contained in:
Jessy Chen
2022-05-09 07:50:30 -04:00
parent 478752a4b3
commit d8ee8f776a
3 changed files with 3 additions and 1 deletions
BIN
View File
Binary file not shown.
BIN
View File
Binary file not shown.
+3 -1
View File
@@ -1,5 +1,5 @@
#!/bin/bash
for dir in esp32 esp32s2 esp32c3 esp32s3 esp32h2; do
for dir in esp32 esp32s2 esp32c3 esp32s3 esp32h2 esp32c2; do
if [ $dir = esp32 ]; then
TOOLCHAIN="xtensa-esp32-elf"
elif [ $dir = esp32s2 ]; then
@@ -10,6 +10,8 @@ for dir in esp32 esp32s2 esp32c3 esp32s3 esp32h2; do
TOOLCHAIN="xtensa-esp32s3-elf"
elif [ $dir = esp32h2 ]; then
TOOLCHAIN="riscv32-esp-elf"
elif [ $dir = esp32c2 ]; then
TOOLCHAIN="riscv32-esp-elf"
else
echo "$dir does not exist"
fi