From 5e25f3016fc6eb6a32260930c7d09031e236d5b6 Mon Sep 17 00:00:00 2001 From: mwojcik Date: Wed, 13 Oct 2021 16:36:01 +0800 Subject: [PATCH] changed user led for nist rtio to 0 --- src/gateware/zc706.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/gateware/zc706.py b/src/gateware/zc706.py index b07977b..a03ef77 100755 --- a/src/gateware/zc706.py +++ b/src/gateware/zc706.py @@ -492,7 +492,7 @@ class _NIST_CLOCK_RTIO: self.submodules += phy rtio_channels.append(rtio.Channel.from_phy(phy, ififo_depth=512)) - phy = ttl_simple.Output(platform.request("user_led_33", 2)) + phy = ttl_simple.Output(platform.request("user_led_33", 0)) self.submodules += phy rtio_channels.append(rtio.Channel.from_phy(phy)) @@ -555,7 +555,7 @@ class _NIST_QC2_RTIO: self.submodules += phy rtio_channels.append(rtio.Channel.from_phy(phy, ififo_depth=512)) - phy = ttl_simple.Output(platform.request("user_led_33", 2)) + phy = ttl_simple.Output(platform.request("user_led_33", 0)) self.submodules += phy rtio_channels.append(rtio.Channel.from_phy(phy))