ESP-IDF platform supports to load AOT to PSRAM and run it (#2385)

This commit is contained in:
dongheng
2023-07-27 10:17:21 +08:00
committed by GitHub
parent 1cafa37568
commit ada7e3fe88
4 changed files with 84 additions and 7 deletions

View File

@ -5,14 +5,16 @@
ESP32_TARGET="esp32"
ESP32C3_TARGET="esp32c3"
ESP32S3_TARGET="esp32s3"
usage ()
{
echo "USAGE:"
echo "$0 $ESP32_TARGET|$ESP32C3_TARGET"
echo "$0 $ESP32_TARGET|$ESP32C3_TARGET|$ESP32S3_TARGET"
echo "Example:"
echo " $0 $ESP32_TARGET"
echo " $0 $ESP32C3_TARGET"
echo " $0 $ESP32S3_TARGET"
exit 1
}