Skip to content

Commit 165ef20

Browse files
committedJun 29, 2015
pipistrello: drop rtio fifos for invisible leds
the main board leds are all under the adapter board also tweak fifo depths a bit in a feeble attempt to circumvent a ISE hang (par phase 4)
1 parent e2cb0e1 commit 165ef20

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed
 

Diff for: ‎soc/targets/artiq_pipistrello.py

+1-5
Original file line numberDiff line numberDiff line change
@@ -105,12 +105,8 @@ def __init__(self, platform, cpu_type="or1k", **kwargs):
105105

106106
phy = ttl_simple.Output(platform.request("ext_led", 0))
107107
self.submodules += phy
108-
rtio_channels.append(rtio.Channel.from_phy(phy, ofifo_depth=4))
108+
rtio_channels.append(rtio.Channel.from_phy(phy, ofifo_depth=256))
109109

110-
for i in range(2, 5):
111-
phy = ttl_simple.Output(platform.request("user_led", i))
112-
self.submodules += phy
113-
rtio_channels.append(rtio.Channel.from_phy(phy, ofifo_depth=4))
114110
self.add_constant("RTIO_TTL_COUNT", len(rtio_channels))
115111

116112
self.add_constant("RTIO_DDS_CHANNEL", len(rtio_channels))

2 commit comments

Comments
 (2)

sbourdeauducq commented on Jun 29, 2015

@sbourdeauducq
Member

Can we keep one? It would be useful for quick checks without the adapter board.

jordens commented on Jun 29, 2015

@jordens
MemberAuthor

Ack.

Please sign in to comment.