From: Luke Kenneth Casson Leighton Date: Tue, 27 Mar 2018 07:09:12 +0000 (+0100) Subject: reduce I2S to 5-pin width X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=a336202361f31b891bd84f1f94cdbe61ca7b6810;p=pinmux.git reduce I2S to 5-pin width --- 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)