From ac8b9cb22de50d26d21a663c2e2042db9131d818 Mon Sep 17 00:00:00 2001 From: pennam Date: Mon, 9 Dec 2024 10:02:09 +0100 Subject: [PATCH] bin2ota: add Portenta C33 --- extras/tools/bin2ota.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/extras/tools/bin2ota.py b/extras/tools/bin2ota.py index 6a51268a..b546c09f 100755 --- a/extras/tools/bin2ota.py +++ b/extras/tools/bin2ota.py @@ -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()