Skip to content

Commit f20da06

Browse files
fix: update load_ip_data to pull address from base_address instead of addr_range (#1499)
1 parent a585c87 commit f20da06

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pynq/pl_server/device.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ def load_ip_data(self, ip_name, data, zero=False):
233233
ip_dict = self.ip_dict
234234
mem_dict = self.mem_dict
235235
if ip_name in ip_dict:
236-
address = ip_dict[ip_name]["addr_range"]
236+
address = ip_dict[ip_name]["base_address"]
237237
target_size = ip_dict[ip_name]["addr_range"]
238238
elif ip_name in mem_dict:
239239
address = mem_dict[ip_name]["base_address"]

0 commit comments

Comments
 (0)