Skip to content

Commit e49373c

Browse files
authored
Merge pull request #352 from Jorgetrujilloroman/patch-1
bin2ota Fix: Add missing colon
2 parents 86520bf + 6bcac2a commit e49373c

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
@@ -26,7 +26,7 @@
2626
magic_number = 0x2341025B.to_bytes(4,byteorder='little')
2727
elif board == "NANO_RP2040_CONNECT":
2828
magic_number = 0x2341005E.to_bytes(4,byteorder='little')
29-
elif board == "NICLA_VISION"
29+
elif board == "NICLA_VISION":
3030
magic_number = 0x2341025F.to_bytes(4,byteorder='little')
3131
elif board == "OPTA":
3232
magic_number = 0x23410064.to_bytes(4,byteorder='little')

0 commit comments

Comments
 (0)