We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7a3dfb3 commit 30e0f5cCopy full SHA for 30e0f5c
extras/tools/bin2ota.py
@@ -30,6 +30,9 @@
30
magic_number = 0x2341025F.to_bytes(4,byteorder='little')
31
elif board == "OPTA":
32
magic_number = 0x23410064.to_bytes(4,byteorder='little')
33
+# Magic number for all ESP32 boards not related to (VID/PID)
34
+elif board == "ESP32":
35
+ magic_number = 0x45535033.to_bytes(4,byteorder='little')
36
else:
37
print ("Error,", board, "is not a supported board type")
38
sys.exit()
0 commit comments