Skip to content

Commit 07da25e

Browse files
authored
Merge pull request #519 from pennam/c33-bin-to-ota
bin2ota: add Portenta C33
2 parents d97fe31 + ac8b9cb commit 07da25e

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

extras/tools/bin2ota.py

+2
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,8 @@
3939
magic_number = 0x45535033.to_bytes(4,byteorder='little')
4040
elif board == "UNOR4WIFI":
4141
magic_number = 0x23411002.to_bytes(4,byteorder='little')
42+
elif board == "PORTENTA_C33":
43+
magic_number = 0x23410068.to_bytes(4,byteorder='little')
4244
else:
4345
print ("Error,", board, "is not a supported board type")
4446
sys.exit()

0 commit comments

Comments
 (0)