From a336202361f31b891bd84f1f94cdbe61ca7b6810 Mon Sep 17 00:00:00 2001 From: Luke Kenneth Casson Leighton Date: Tue, 27 Mar 2018 08:09:12 +0100 Subject: [PATCH] reduce I2S to 5-pin width --- src/spec/interfaces.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/spec/interfaces.py b/src/spec/interfaces.py index 6565bb6..263e5d8 100644 --- a/src/spec/interfaces.py +++ b/src/spec/interfaces.py @@ -105,9 +105,9 @@ class Pins(object): def i2s(bankspec, suffix, offs, bank, mux=1, spec=None, limit=None): - i2spins = ['MCK+', 'BCK+', 'LRCK+', 'DI-'] - for i in range(4): - i2spins.append("DO%d+" % i) + i2spins = ['MCK+', 'BCK+', 'LRCK+', 'DI-', 'DO+'] + #for i in range(4): + # i2spins.append("DO%d+" % i) return Pins('IIS', i2spins, bankspec, suffix, offs, bank, mux, spec, limit, origsuffix=suffix) -- 2.30.2