This commit is contained in:
2025-04-24 15:02:46 -06:00
parent 6db405527a
commit 5307d6427b
5 changed files with 17 additions and 6 deletions
+1
View File
@@ -2,4 +2,5 @@ scratch.txt
*.bak *.bak
*.old *.old
old old
scratch
.vscode .vscode
+12 -4
View File
@@ -1,14 +1,22 @@
#!/bin/bash #!/bin/bash
echo -e "Getting ESP Chip Info...\n" echo -e "Getting ESP Chip Info...\n"
echo -e "Base MAC Address:" # echo -e "Base MAC Address:"
esptool.py --port $ESPPORT --baud $ESPBAUD --chip auto read_mac # esptool.py --port $ESPPORT --baud $ESPBAUD --chip auto read_mac
echo -e "\nChip ID:" echo -e "\nChip ID:"
esptool.py --port $ESPPORT --baud $ESPBAUD --chip auto chip_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:" echo -e "\nFlash Status:"
esptool.py --port $ESPPORT --baud $ESPBAUD --chip auto read_flash_status esptool.py --port $ESPPORT --baud $ESPBAUD --chip auto read_flash_status
echo -e "\nSecurity Info:" echo -e "\nSecurity Info:"
esptool.py --port $ESPPORT --baud $ESPBAUD --chip auto get_security_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" echo -e "\nAll donsies~ :3\n"
+1
View File
@@ -0,0 +1 @@
cat $HOME/esp/esp-install-custom/help.txt
+1
View File
@@ -54,6 +54,7 @@ Usage:
Features: Features:
`help-esp` show this help
`build` idf.py build `build` idf.py build
`changebaud` prompts to enter a new baud `changebaud` prompts to enter a new baud
`changeesp` prompts to type in esp32s3, esp32c6, etc `changeesp` prompts to type in esp32s3, esp32c6, etc
+1 -1
View File
@@ -1 +1 @@
7.2.1-dev 7.3-dev