From 5307d6427b811f0a2fce90d9ba9b03ef53993d4d Mon Sep 17 00:00:00 2001 From: hPrnicessPi3 Date: Thu, 24 Apr 2025 15:02:46 -0600 Subject: [PATCH] v7.3-dev --- .gitignore | 3 ++- custom_bin/espinfo | 16 ++++++++++++---- custom_bin/help-esp | 1 + help.txt | 1 + version.txt | 2 +- 5 files changed, 17 insertions(+), 6 deletions(-) create mode 100644 custom_bin/help-esp diff --git a/.gitignore b/.gitignore index 97cf2f3..211ccf0 100644 --- a/.gitignore +++ b/.gitignore @@ -2,4 +2,5 @@ scratch.txt *.bak *.old old -.vscode \ No newline at end of file +scratch +.vscode diff --git a/custom_bin/espinfo b/custom_bin/espinfo index d0c5f3e..206e409 100755 --- a/custom_bin/espinfo +++ b/custom_bin/espinfo @@ -1,14 +1,22 @@ #!/bin/bash echo -e "Getting ESP Chip Info...\n" -echo -e "Base MAC Address:" -esptool.py --port $ESPPORT --baud $ESPBAUD --chip auto read_mac +# echo -e "Base MAC Address:" +# esptool.py --port $ESPPORT --baud $ESPBAUD --chip auto read_mac echo -e "\nChip ID:" esptool.py --port $ESPPORT --baud $ESPBAUD --chip auto chip_id + +echo -e "\nFlash ID:" +esptool.py --port $ESPPORT --baud $ESPBAUD --chip auto flash_id + echo -e "\nFlash Status:" esptool.py --port $ESPPORT --baud $ESPBAUD --chip auto read_flash_status + echo -e "\nSecurity Info:" esptool.py --port $ESPPORT --baud $ESPBAUD --chip auto get_security_info -echo -e "\nEfuse Table:" -idf.py --port $ESPPORT --baud $ESPBAUD efuse-dump + +if [ -f "./CMakeLists.txt" ]; then + echo -e "\nEfuse Table:" + idf.py --port $ESPPORT --baud $ESPBAUD efuse-dump +fi echo -e "\nAll donsies~ :3\n" diff --git a/custom_bin/help-esp b/custom_bin/help-esp new file mode 100644 index 0000000..3362ece --- /dev/null +++ b/custom_bin/help-esp @@ -0,0 +1 @@ +cat $HOME/esp/esp-install-custom/help.txt diff --git a/help.txt b/help.txt index 728297f..5f0c60b 100644 --- a/help.txt +++ b/help.txt @@ -54,6 +54,7 @@ Usage: Features: + `help-esp` show this help `build` idf.py build `changebaud` prompts to enter a new baud `changeesp` prompts to type in esp32s3, esp32c6, etc diff --git a/version.txt b/version.txt index 014cb6c..8098fbf 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -7.2.1-dev \ No newline at end of file +7.3-dev