Skip to content

Commit b5d098c

Browse files
committed
bin2ota: fix magic number
1 parent c25d61e commit b5d098c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

extras/tools/bin2ota.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
elif board == "NANO_RP2040_CONNECT":
2828
magic_number = 0x2341005E.to_bytes(4,byteorder='little')
2929
elif board == "ESP32":
30-
magic_number = 0x00000000.to_bytes(4,byteorder='little')
30+
magic_number = 0x45535033.to_bytes(4,byteorder='little')
3131
else:
3232
print ("Error,", board, "is not a supported board type")
3333
sys.exit()

0 commit comments

Comments
 (0)