use different user_led to avoid VADJ problems with NIST backplanes

core0-buffer
Sebastien Bourdeauducq 2020-05-14 09:23:43 +08:00
parent aeefdc862d
commit 1222db56e1
1 changed files with 2 additions and 2 deletions

View File

@ -82,7 +82,7 @@ class NIST_CLOCK(ZC706):
self.submodules += phy
rtio_channels.append(rtio.Channel.from_phy(phy, ififo_depth=512))
phy = ttl_simple.Output(platform.request("user_led", 2))
phy = ttl_simple.Output(platform.request("user_led", 1))
self.submodules += phy
rtio_channels.append(rtio.Channel.from_phy(phy))
@ -131,7 +131,7 @@ class NIST_QC2(ZC706):
self.submodules += phy
clock_generators.append(rtio.Channel.from_phy(phy))
phy = ttl_simple.Output(platform.request("user_led", 2))
phy = ttl_simple.Output(platform.request("user_led", 1))
self.submodules += phy
rtio_channels.append(rtio.Channel.from_phy(phy))