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 5776c7f commit c797ea1Copy full SHA for c797ea1
extras/tools/bin2ota.py
@@ -26,6 +26,10 @@
26
magic_number = 0x2341025B.to_bytes(4,byteorder='little')
27
elif board == "NANO_RP2040_CONNECT":
28
magic_number = 0x2341005E.to_bytes(4,byteorder='little')
29
+elif board == "NICLA_VISION"
30
+ magic_number = 0x2341025F.to_bytes(4,byteorder='little')
31
+elif board == "OPTA":
32
+ magic_number = 0x23410064.to_bytes(4,byteorder='little')
33
else:
34
print ("Error,", board, "is not a supported board type")
35
sys.exit()
0 commit comments