Skip to content

Commit

Permalink
Modify warning text (#2066)
Browse files Browse the repository at this point in the history
  • Loading branch information
NotherNgineer authored Mar 29, 2024
1 parent b473930 commit cb9fee8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion firmware/tools/make_spi_image.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ def write_image(data, path):
val = int.from_bytes(snippet, byteorder='little')
checksum += val
if (val >= external_apps_address_start) and (val < external_apps_address_end) and ((val & 0xFFFF) < maximum_application_size):
print ("WARNING: External code address", hex(val), "at offset", hex(i), "in", sys.argv[3])
print ("WARNING: Possible external code address", hex(val), "at offset", hex(i), "in", sys.argv[3])

final_checksum = 0
checksum = (final_checksum - checksum) & 0xFFFFFFFF
Expand Down

0 comments on commit cb9fee8

Please sign in to comment.