Skip to content

Commit 5a3eb6c

Browse files
authored
remove old (not anymore working) way of setting start address of firmware
1 parent be53c35 commit 5a3eb6c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

builder/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ def _parse_partitions(env):
132132

133133
result = []
134134
next_offset = 0
135-
app_offset = int(board.get("upload.offset_address", "0x10000"), 16) # default 0x10000
135+
app_offset = 0x10000 # default address for firmware
136136
with open(partitions_csv) as fp:
137137
for line in fp.readlines():
138138
line = line.strip()

0 commit comments

Comments
 (0)