[Libre-soc-bugs] [Bug 50] nmigen pinmux

bugzilla-daemon at libre-soc.org bugzilla-daemon at libre-soc.org
Tue Nov 16 00:42:33 GMT 2021


https://bugs.libre-soc.org/show_bug.cgi?id=50

--- Comment #34 from Luke Kenneth Casson Leighton <lkcl at lkcl.net> ---
nggggh i just realised: enumeration of the pad ports was masking the
actual inputs/outputs

    def get_input(self, pin, port, attrs, invert):
        (res, pin, port, attrs) = self.padlookup[pin.name]

should have been:

    def get_input(self, pin, port, attrs, invert):
        (padres, padpin, padport, padattrs) = self.padlookup[pin.name]

ngggggh.  there are *six* pieces of information to wire up.

-- 
You are receiving this mail because:
You are on the CC list for the bug.


More information about the libre-soc-bugs mailing list