Skip to content

Commit

Permalink
reduce unnecessary resource usage by several thousand LUTs/FFs
Browse files Browse the repository at this point in the history
  • Loading branch information
hansfbaier committed Dec 30, 2021
1 parent 67eb28d commit b0e25da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gateware/adat_usb2_audio_interface.py
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ def elaborate(self, platform):
adat_receivers = []
adat_pads = []
for i in range(1, 5):
transmitter = ADATTransmitter(fifo_depth=8)
transmitter = ADATTransmitter(fifo_depth=4)
setattr(m.submodules, f"adat{i}_transmitter", transmitter)
adat_transmitters.append(transmitter)

Expand Down

0 comments on commit b0e25da

Please # to comment.