Files
esp-idf-tools/custom_bin/espinfo
T
2025-12-17 07:40:46 -07:00

19 lines
1.0 KiB
Bash
Executable File

#!/bin/bash
echo "esp-idf-tools install dir (\$ESPIDFTOOLS_INSTALLDIR): $ESPIDFTOOLS_INSTALLDIR"
echo "esp dir (\$ESPDIR): $ESPDIR"
echo "esp-idf-tools custom_bin dir: $ESPDIR/.custom_bin/"
echo "tools:"
ls "$ESPDIR/.custom_bin/"
echo "esp-idf-tools version: $(cat $ESPDIR/.custom_bin/version.txt)"
echo "esp-idf-tools last install: $(tail -1 $ESPDIR/version-data.log)"
echo "esp-idf path (\$IDF_PATH): $IDF_PATH"
echo "esp-idf version (\$ESP_IDF_VERSION): $ESP_IDF_VERSION"
echo "esp-idf python path (\$IDF_PYTHON_ENV_PATH): $IDF_PYTHON_ENV_PATH"
echo "openocd scripts (\$OPENOCD_SCRIPTS): $OPENOCD_SCRIPTS"
echo "esp-idf rom elf dir (\$ESP_ROM_ELF_DIR): $ESP_ROM_ELF_DIR"
echo "esp-idf-deactivate file path (\$IDF_DEACTIVATE_FILE_PATH): $IDF_DEACTIVATE_FILE_PATH"
echo "esp-idf install cmd (\$IDF_TOOLS_INSTALL_CMD): $IDF_TOOLS_INSTALL_CMD"
echo "esp-idf export cmd (\$IDF_TOOLS_EXPORT_CMD): $IDF_TOOLS_EXPORT_CMD"
echo "port (\$ESPPORT): $ESPPORT"
echo "baud (\$ESPBAUD): $ESPBAUD"
echo "target device (\$ESPTARGET): $ESPTARGET"