2025-06-26 17:09:21 +02:00
|
|
|
#!/bin/bash
|
2025-07-11 11:00:56 +02:00
|
|
|
set -e
|
2025-06-26 17:09:21 +02:00
|
|
|
|
|
|
|
# Create directory "modem_sim_esp32", go inside it
|
|
|
|
# Usage: ./install.sh [platform] [module]
|
|
|
|
|
|
|
|
SCRIPT_DIR=$(pwd)
|
|
|
|
mkdir -p modem_sim_esp32
|
|
|
|
cd modem_sim_esp32
|
|
|
|
|
2025-07-11 11:00:56 +02:00
|
|
|
if [ -z "$IDF_PATH" ]; then
|
|
|
|
echo "Error: IDF_PATH environment variable is not set"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Default ESP_AT_VERSION uses this specific commit from master to support new chips and features
|
|
|
|
ESP_AT_VERSION="aa9d7e0e9b741744f7bf5bec3bbf887cff033d5f"
|
|
|
|
|
|
|
|
# Shallow clone of esp-at.git at $ESP_AT_VERSION
|
2025-06-26 17:09:21 +02:00
|
|
|
if [ ! -d "esp-at" ]; then
|
2025-07-11 11:00:56 +02:00
|
|
|
# cannot shallow clone from a specific commit, so we init, shallow fetch, and checkout
|
|
|
|
mkdir -p esp-at && cd esp-at && git init && git remote add origin https://github.com/espressif/esp-at.git
|
|
|
|
git fetch --depth 1 origin $ESP_AT_VERSION && git checkout $ESP_AT_VERSION
|
2025-06-26 17:09:21 +02:00
|
|
|
else
|
|
|
|
echo "esp-at directory already exists, skipping clone."
|
2025-07-11 11:00:56 +02:00
|
|
|
cd esp-at
|
2025-06-26 17:09:21 +02:00
|
|
|
fi
|
|
|
|
|
|
|
|
# Add esp-idf directory which is a symlink to the $IDF_PATH
|
|
|
|
if [ ! -L "esp-idf" ]; then
|
|
|
|
ln -sf "$IDF_PATH" esp-idf
|
|
|
|
else
|
|
|
|
echo "esp-idf symlink already exists, skipping."
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Create "build" directory
|
|
|
|
mkdir -p build
|
|
|
|
|
|
|
|
# Default values for platform and module
|
|
|
|
platform="PLATFORM_ESP32"
|
|
|
|
module="WROOM-32"
|
|
|
|
|
|
|
|
# Override defaults if parameters are provided
|
|
|
|
if [ ! -z "$1" ]; then
|
|
|
|
platform="$1"
|
|
|
|
fi
|
|
|
|
if [ ! -z "$2" ]; then
|
|
|
|
module="$2"
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Create file "build/module_info.json" with content
|
|
|
|
cat > build/module_info.json << EOF
|
|
|
|
{
|
|
|
|
"platform": "$platform",
|
|
|
|
"module": "$module",
|
|
|
|
"description": "4MB, Wi-Fi + BLE, OTA, TX:17 RX:16",
|
|
|
|
"silence": 0
|
|
|
|
}
|
|
|
|
EOF
|
|
|
|
|
|
|
|
cp "$SCRIPT_DIR/sdkconfig.defaults" "module_config/module_esp32_default/sdkconfig.defaults"
|
|
|
|
|
|
|
|
echo "Installation completed successfully!"
|
|
|
|
echo "Created modem_sim_esp32 directory with esp-at repository and configuration"
|