Skip to content

Commit

Permalink
Merge pull request #53 from ezflash/timestamp_removal
Browse files Browse the repository at this point in the history
Removed timestamp to speed flash operation
  • Loading branch information
ezflash authored May 30, 2024
2 parents 09e5713 + de6cb9d commit 779c824
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ezFlashCLI/ezFlash/smartbond/smartbondDevices.py
Original file line number Diff line number Diff line change
Expand Up @@ -1336,7 +1336,7 @@ def make_image_header(self, image):
for i in range(6):
buff += struct.pack("b", 0x0)
# add the time stamp
buff += struct.pack("<I", int(time.time()))
buff += struct.pack("<I", 0)
buff += struct.pack("<I", self.IMG_IVT_OFFSET)
buff += struct.pack("<H", 0x22AA)
buff += struct.pack("<H", 0x0)
Expand Down

0 comments on commit 779c824

Please sign in to comment.