From 831140b20df63131bcfcb01f1dc887defbb35bc8 Mon Sep 17 00:00:00 2001 From: MorganTL Date: Mon, 28 Aug 2023 16:07:02 +0800 Subject: [PATCH] kasli_soc: rename drtio_transceiver to gt_drtio --- src/gateware/kasli_soc.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/gateware/kasli_soc.py b/src/gateware/kasli_soc.py index 6fbeb4b..106e6cb 100755 --- a/src/gateware/kasli_soc.py +++ b/src/gateware/kasli_soc.py @@ -314,7 +314,7 @@ class GenericMaster(SoCCore): self.csr_devices.append("virtual_leds") self.comb += [self.virtual_leds.get(i).eq(channel.rx_ready) - for i, channel in enumerate(self.drtio_transceiver.channels)] + for i, channel in enumerate(self.gt_drtio.channels)] @@ -486,7 +486,7 @@ class GenericSatellite(SoCCore): self.csr_devices.append("virtual_leds") self.comb += [self.virtual_leds.get(i).eq(channel.rx_ready) - for i, channel in enumerate(self.drtio_transceiver.channels)] + for i, channel in enumerate(self.gt_drtio.channels)] def write_mem_file(soc, filename):