Skip to content

Commit

Permalink
Merge pull request #519 from pennam/c33-bin-to-ota
Browse files Browse the repository at this point in the history
bin2ota: add Portenta C33
  • Loading branch information
pennam authored Dec 16, 2024
2 parents d97fe31 + ac8b9cb commit 07da25e
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions extras/tools/bin2ota.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,8 @@
magic_number = 0x45535033.to_bytes(4,byteorder='little')
elif board == "UNOR4WIFI":
magic_number = 0x23411002.to_bytes(4,byteorder='little')
elif board == "PORTENTA_C33":
magic_number = 0x23410068.to_bytes(4,byteorder='little')
else:
print ("Error,", board, "is not a supported board type")
sys.exit()
Expand Down

0 comments on commit 07da25e

Please sign in to comment.