Skip to content
Snippets Groups Projects
Commit 4a27ad04 authored by Paul Sokolovsky's avatar Paul Sokolovsky
Browse files

esp8266/scripts/port_diag.py: Include esp.check_fw() call.

parent e33d2383
Branches
No related tags found
No related merge requests found
...@@ -17,6 +17,8 @@ def main(): ...@@ -17,6 +17,8 @@ def main():
FREQ_MAP = {0: "40MHZ", 1: "26MHZ", 2: "20MHz", 0xf: "80MHz"} FREQ_MAP = {0: "40MHZ", 1: "26MHZ", 2: "20MHz", 0xf: "80MHz"}
print("Byte @2: %02x" % ROM[2]) print("Byte @2: %02x" % ROM[2])
print("Byte @3: %02x (Flash size: %s Flash freq: %s)" % (ROM[3], SZ_MAP.get(ROM[3] >> 4, "?"), FREQ_MAP.get(ROM[3] & 0xf))) print("Byte @3: %02x (Flash size: %s Flash freq: %s)" % (ROM[3], SZ_MAP.get(ROM[3] >> 4, "?"), FREQ_MAP.get(ROM[3] & 0xf)))
print("Firmware checksum:")
print(esp.check_fw())
print("\nNetworking:") print("\nNetworking:")
print("STA ifconfig:", network.WLAN(network.STA_IF).ifconfig()) print("STA ifconfig:", network.WLAN(network.STA_IF).ifconfig())
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment