From: Luke Kenneth Casson Leighton Date: Mon, 28 Sep 2020 15:58:48 +0000 (+0100) Subject: reduce not-connected IO pins X-Git-Tag: 24jan2021_ls180~291 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=1ee6a258360601cfcad12ff2c01b6b29406f6955;p=soc.git reduce not-connected IO pins --- diff --git a/src/soc/litex/florent/libresoc/ls180.py b/src/soc/litex/florent/libresoc/ls180.py index 49f32b3d..dc91c4e9 100644 --- a/src/soc/litex/florent/libresoc/ls180.py +++ b/src/soc/litex/florent/libresoc/ls180.py @@ -121,7 +121,7 @@ _io.append(make_uart("uart", 0)) _io.append(make_uart("uart", 1)) # not connected - eurgh have to adjust this to match the total pincount. -num_nc = 43 +num_nc = 42 nc = ' '.join("NC%d" % i for i in range(num_nc)) _io.append(("nc", 0, Pins(nc), IOStandard("LVCMOS33")))