bug fixes and added espinfo for detailed chip info
This commit is contained in:
Executable
+14
@@ -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"
|
||||
Reference in New Issue
Block a user