mirror of https://github.com/m-labs/artiq.git
Revert "phaser: cap phy data width to 64 temporarily"
This reverts commit 342b9e977e
.
This commit is contained in:
parent
641f07119f
commit
bcde26f990
|
@ -16,8 +16,7 @@ class Channel(_ChannelPHY):
|
|||
_ChannelPHY.__init__(self, *args, **kwargs)
|
||||
self.phys = []
|
||||
for i in self.i:
|
||||
rl = rtlink.Interface(rtlink.OInterface(
|
||||
min(64, len(i.payload)))) # FIXME
|
||||
rl = rtlink.Interface(rtlink.OInterface(len(i.payload)))
|
||||
self.comb += [
|
||||
i.stb.eq(rl.o.stb),
|
||||
rl.o.busy.eq(~i.ack),
|
||||
|
|
Loading…
Reference in New Issue