Skip to content

Commit

Permalink
kc705: fix drtio_aux address conflict
Browse files Browse the repository at this point in the history
sbourdeauducq committed Dec 6, 2016
1 parent 4669d3f commit b311830
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion artiq/gateware/targets/kc705_drtio_master.py
Original file line number Diff line number Diff line change
@@ -30,7 +30,7 @@ class Master(MiniSoC, AMPSoC):
"timer_kernel": 0x10000000,
"rtio": 0x20000000,
"rtio_dma": 0x30000000,
"drtio_aux": 0x60000000,
"drtio_aux": 0x50000000,
"mailbox": 0x70000000
}
mem_map.update(MiniSoC.mem_map)
2 changes: 1 addition & 1 deletion artiq/gateware/targets/kc705_drtio_satellite.py
Original file line number Diff line number Diff line change
@@ -126,7 +126,7 @@ def __init__(self, platform, sys_clk_freq):

class Satellite(BaseSoC):
mem_map = {
"drtio_aux": 0x60000000,
"drtio_aux": 0x50000000,
}
mem_map.update(BaseSoC.mem_map)

0 comments on commit b311830

Please sign in to comment.