Skip to content

Commit

Permalink
Fixed typo in bootloader script
Browse files Browse the repository at this point in the history
Signed-off-by: Anderson Ignacio da Silva <[email protected]>
  • Loading branch information
aignacio committed Jun 14, 2024
1 parent ea33b4e commit 97861e7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sw/bootloader_elf.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# License : MIT license <Check LICENSE>
# Author : Anderson Ignacio da Silva (aignacio) <[email protected]>
# Date : 16.03.2022
# Last Modified Date: 28.05.2022
# Last Modified Date: 14.06.2024
# Description : Bootloader script to download binaries using the UART port
# for the Pixel SoC bootloader ROM
import serial
Expand Down Expand Up @@ -80,7 +80,7 @@ def _fmt_data(data, size_file, size_mem):
if ((i+2) < size_file):
word_int |= data[i+2]<<16

if ((i+3) < siz.e_file):
if ((i+3) < size_file):
word_int |= data[i+3]<<24

# print(">>I=%d", i)
Expand Down

0 comments on commit 97861e7

Please sign in to comment.