mirror of https://github.com/wolfSSL/wolfssl.git
231 lines
6.8 KiB
Bash
231 lines
6.8 KiB
Bash
#!/usr/bin/env bash
|
|
#
|
|
# Syntax:
|
|
# ./testMonitor.sh <example_name> <target> <keyword>
|
|
#
|
|
# Example:
|
|
#
|
|
# ./testMonitor.sh wolfssl_test esp32c6 WIP
|
|
#
|
|
# Define ESPIDF_PUTTY_MONITOR to a non-blank value to call putty
|
|
# instead of using `idf.py monitor`
|
|
#========================================================================================
|
|
|
|
# Run shell check to ensure this a good script.
|
|
shellcheck "$0"
|
|
|
|
PUTTY_EXE="/mnt/c/tools/putty.exe"
|
|
|
|
THIS_HOME_DIR="$(pwd)"
|
|
# export WOLFSSL_ESPIDF="/mnt/c/workspace/wolfssl-master/IDE/Espressif/ESP-IDF/examples"
|
|
|
|
# the first parameter is expected to be a project name in the WOLFSSL_ESPIDF directory.
|
|
if [ $# -lt 3 ]; then
|
|
echo "Usage: $0 <example_name> <target> <keyword>"
|
|
exit 1
|
|
else
|
|
THIS_EXAMPLE="$1"
|
|
# pushd "${WOLFSSL_ESPIDF}" || exit 1
|
|
# pushd "./${THIS_EXAMPLE}" || exit 1
|
|
|
|
THIS_TARGET="$2"
|
|
THIS_KEYWORD="$3"
|
|
fi
|
|
|
|
echo "testMonitor current path:"
|
|
pwd
|
|
|
|
#ESP32c2 monitor is 78800
|
|
# These are the WSL Serial Ports for each respective ESP32 SoC Device.
|
|
# Unfortunately they are currently hard coded and computer-specific.
|
|
esp32_PORT="/dev/ttyS9"
|
|
esp32c2_PORT="/dev/ttyS79"
|
|
esp32c3_PORT="/dev/ttyS35"
|
|
esp32c6_PORT="/dev/ttyS36"
|
|
esp32h2_PORT="/dev/ttyS31"
|
|
esp32s2_PORT="/dev/ttyS30"
|
|
esp32s3_PORT="/dev/ttyS24"
|
|
esp8266_PORT="/dev/ttyS70"
|
|
|
|
esp8684_PORT="/dev/ttyS49"
|
|
# esp32c2_PORT="/dev/ttyS49" #8684
|
|
|
|
# Load putty profiles. Note profiles names need to have been previously
|
|
# defined and saved in putty! These are the saved sessions in putty:
|
|
esp32_PUTTY="COM9"
|
|
esp32c2_PUTTY="COM79 - ESP32-C2 74880"
|
|
esp32c3_PUTTY="COM35"
|
|
esp32c6_PUTTY="COM36"
|
|
esp32h2_PUTTY="COM31"
|
|
esp32s2_PUTTY="COM30"
|
|
esp32s3_PUTTY="COM24"
|
|
esp8684_PUTTY="COM49"
|
|
esp8266_PUTTY="COM70 - 74880"
|
|
|
|
echo "esp32_PORT: $esp32_PORT"
|
|
echo "esp32c2_PORT: $esp32c2_PORT"
|
|
echo "esp32c3_PORT: $esp32c3_PORT"
|
|
echo "esp32c6_PORT: $esp32c6_PORT"
|
|
echo "esp32s2_PORT: $esp32s2_PORT"
|
|
echo "esp32s3_PORT: $esp32s3_PORT"
|
|
echo "esp32h2_PORT: $esp32h2_PORT"
|
|
echo "esp8266_PORT: $esp8266_PORT"
|
|
echo "esp8684_PORT: $esp8684_PORT"
|
|
|
|
# given a THIS_TARGET, assign THIS_TARGET_PORT to the respective port.
|
|
THIS_TARGET_PORT="${THIS_TARGET}_PORT"
|
|
|
|
# Check that THIS_TARGET_PORT is defined.
|
|
if [ -z "$THIS_TARGET_PORT" ]; then
|
|
echo "Error: No port defined for ${THIS_TARGET}"
|
|
exit 1
|
|
else
|
|
echo "THIS_TARGET_PORT=${THIS_TARGET_PORT}"
|
|
fi
|
|
|
|
THIS_TARGET_PORT="${!THIS_TARGET_PORT}"
|
|
echo THIS_TARGET_PORT="${THIS_TARGET_PORT}"
|
|
|
|
|
|
# The use of putty is optional
|
|
THIS_TARGET_PUTTY="${THIS_TARGET}_PUTTY"
|
|
|
|
if [ -z "$ESPIDF_PUTTY_MONITOR" ]; then
|
|
echo "Using ESP-IDF monitor"
|
|
else
|
|
# Check that THIS_TARGET_PUTTY is defined.
|
|
echo ""
|
|
echo "Using saved putty profile session names:"
|
|
echo "esp32_PUTTY: $esp32_PUTTY"
|
|
echo "esp32c2_PUTTY: $esp32c2_PUTTY"
|
|
echo "esp32c3_PUTTY: $esp32c3_PUTTY"
|
|
echo "esp32c6_PUTTY: $esp32c6_PUTTY"
|
|
echo "esp32s2_PUTTY: $esp32s2_PUTTY"
|
|
echo "esp32s3_PUTTY: $esp32s3_PUTTY"
|
|
echo "esp32h2_PUTTY: $esp32h2_PUTTY"
|
|
echo "esp8684_PUTTY: $esp8684_PUTTY"
|
|
echo "esp8266_PUTTY: $esp8266_PUTTY"
|
|
echo ""
|
|
|
|
if [ -z "$THIS_TARGET_PUTTY" ]; then
|
|
echo "Error: No putty profile defined for ${THIS_TARGET}"
|
|
exit 1
|
|
else
|
|
echo "THIS_TARGET_PUTTY=${THIS_TARGET_PUTTY}"
|
|
fi
|
|
|
|
THIS_TARGET_PUTTY="${!THIS_TARGET_PUTTY}"
|
|
echo THIS_TARGET_PUTTY="${THIS_TARGET_PUTTY}"
|
|
fi
|
|
|
|
if [[ "$THIS_TARGET" == "esp8684" ]]; then
|
|
echo "Treating esp8684 like an esp32c2"
|
|
THIS_TARGET=esp32c2
|
|
fi
|
|
|
|
|
|
# Assemble some log file names.
|
|
echo ""
|
|
BUILD_LOG="${THIS_HOME_DIR}/logs/${THIS_EXAMPLE}_build_IDF_v5.1_${THIS_TARGET}_${THIS_KEYWORD}.txt"
|
|
FLASH_LOG="${THIS_HOME_DIR}/logs/${THIS_EXAMPLE}_flash_IDF_v5.1_${THIS_TARGET}_${THIS_KEYWORD}.txt"
|
|
THIS_LOG="${THIS_HOME_DIR}/logs/${THIS_EXAMPLE}_output_IDF_v5.1_${THIS_TARGET}_${THIS_KEYWORD}.txt"
|
|
THIS_CFG="${THIS_HOME_DIR}/logs/${THIS_EXAMPLE}_user_settings_IDF_v5.1_${THIS_TARGET}_${THIS_KEYWORD}.txt"
|
|
THIS_WLOG="logs\\${THIS_TARGET}_output.log"
|
|
# cp ./components/wolfssl/include/user_settings.h "${THIS_CFG}"
|
|
|
|
echo "BUILD_LOG = ${BUILD_LOG}"
|
|
echo "FLASH_LOG = ${FLASH_LOG}"
|
|
echo "THIS_LOG = ${THIS_LOG}"
|
|
echo "THIS_CFG = ${THIS_CFG}"
|
|
|
|
|
|
if [[ "$THIS_TARGET" == "esp8266" ]]; then
|
|
# idf.py for the ESP8266 does not support --version
|
|
echo "ESP8266 using $IDF_PATH"
|
|
else
|
|
idf.py --version > "${BUILD_LOG}" 2>&1
|
|
fi
|
|
|
|
echo "Full clean for $THIS_TARGET..."
|
|
#---------------------------------------------------------------------
|
|
idf.py fullclean >> "${BUILD_LOG}" 2>&1
|
|
THIS_ERROR_CODE=$?
|
|
if [ $THIS_ERROR_CODE -ne 0 ]; then
|
|
echo ""
|
|
echo "Error during fullclean. Deleting build directory."
|
|
rm -rf ./build
|
|
fi
|
|
|
|
#---------------------------------------------------------------------
|
|
if [[ "$THIS_TARGET" == "esp8266" ]]; then
|
|
#always start with a fresh sdkconfig-debug (or sdkconfig-release) from defaults
|
|
rm -f ./sdkconfig-debug
|
|
rm -f ./sdkconfig-release
|
|
|
|
# idf.py for the ESP8266 does not support --set-target
|
|
echo "Target is $THIS_TARGET"
|
|
|
|
# Since we don't "set-target" for the ESP8266, ensure the sdkconfig is not present
|
|
rm -f ./sdkconfig
|
|
else
|
|
# Start with fresh sdkconfig
|
|
rm -f ./sdkconfig
|
|
|
|
# ESP8266 debug and release files not used for non-ESP8266 targets here,delete anyhow:
|
|
rm -f ./sdkconfig-debug
|
|
rm -f ./sdkconfig-release
|
|
|
|
echo "idf.py set-target $THIS_TARGET"
|
|
idf.py "set-target" "$THIS_TARGET" >> "${BUILD_LOG}" 2>&1
|
|
THIS_ERROR_CODE=$?
|
|
if [ $THIS_ERROR_CODE -ne 0 ]; then
|
|
echo ""
|
|
tail -n 5 "${BUILD_LOG}"
|
|
echo "Error during set-target"
|
|
exit 1
|
|
fi
|
|
fi
|
|
|
|
#---------------------------------------------------------------------
|
|
echo ""
|
|
echo "Build $THIS_TARGET..."
|
|
echo "idf.py build"
|
|
idf.py build >> "${BUILD_LOG}" 2>&1
|
|
THIS_ERROR_CODE=$?
|
|
if [ $THIS_ERROR_CODE -ne 0 ]; then
|
|
echo ""
|
|
tail -n 5 "${BUILD_LOG}"
|
|
echo "Error during build for $THIS_TARGET"
|
|
echo ""
|
|
echo ""
|
|
exit 1
|
|
fi
|
|
|
|
#---------------------------------------------------------------------
|
|
echo ""
|
|
echo "Flash $THIS_TARGET..."
|
|
echo "idf.py flash -p ${THIS_TARGET_PORT} -b 115200"
|
|
idf.py flash -p "${THIS_TARGET_PORT}" -b 115200 2>&1 | tee -a "${FLASH_LOG}"
|
|
THIS_ERROR_CODE=$?
|
|
if [ $THIS_ERROR_CODE -ne 0 ]; then
|
|
echo ""
|
|
tail -n 5 "${FLASH_LOG}"
|
|
echo "Error during flash"
|
|
exit 1
|
|
fi
|
|
|
|
# popd || exit 1
|
|
# popd || exit 1
|
|
|
|
# Note both of the options spawn a separate process:
|
|
if [ -z "$ESPIDF_PUTTY_MONITOR" ]; then
|
|
echo "Monitor..."
|
|
echo ./wolfssl_monitor.py --port "${THIS_TARGET_PORT}" --baudrate 115200 --logfile "${THIS_LOG}"
|
|
|
|
./wolfssl_monitor.py --port "${THIS_TARGET_PORT}" --baudrate 115200 --logfile "${THIS_LOG}" &
|
|
else
|
|
echo "Calling putty..."
|
|
echo "$PUTTY_EXE -load \"$THIS_TARGET_PUTTY\""
|
|
$PUTTY_EXE -load "$THIS_TARGET_PUTTY" -logoverwrite -sessionlog "${THIS_WLOG}" &
|
|
fi
|