bug fixes and added espinfo for detailed chip info

This commit is contained in:
2025-04-14 07:33:12 -06:00
parent 2e82cbcf6f
commit 6db405527a
4 changed files with 22 additions and 6 deletions
+14
View File
@@ -0,0 +1,14 @@
#!/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 "\nChip ID:"
esptool.py --port $ESPPORT --baud $ESPBAUD --chip auto chip_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
echo -e "\nAll donsies~ :3\n"