mirror of https://github.com/m-labs/artiq.git
ad9858: make wb data 8 bit wide
matches actual dds bus data width and saves bram
This commit is contained in:
parent
c8fba45db5
commit
45ec5dbe84
|
@ -38,7 +38,7 @@ class AD9858(Module):
|
|||
read_wait_cycles=10, hiz_wait_cycles=3,
|
||||
bus=None):
|
||||
if bus is None:
|
||||
bus = wishbone.Interface()
|
||||
bus = wishbone.Interface(data_width=8)
|
||||
self.bus = bus
|
||||
|
||||
# # #
|
||||
|
|
Loading…
Reference in New Issue