Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tockloader/app_padding.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ def get_binary(self, address=None):
tbfh_binary = self.tbfh.get_binary()
# Calculate the padding length.
padding_binary_size = self.get_size() - len(tbfh_binary)
return tbfh_binary + b"\xFF" * padding_binary_size
return tbfh_binary + b"\xff" * padding_binary_size

def info(self, verbose=False):
"""
Expand Down
1 change: 0 additions & 1 deletion tockloader/tockloader.py
Original file line number Diff line number Diff line change
Expand Up @@ -1324,7 +1324,6 @@ def _reshuffle_apps(self, apps, preserve_order=False):

# Get where app memory might start.
ram_start_address = self._get_memory_start_address()
logging.debug(f"Using RAM start address {ram_start_address:#02x}")

# elf2tab can produce TBFs which have a fixed flash start
# address, but not a fixed RAM start address, in which case
Expand Down
Loading