From: Luke Kenneth Casson Leighton Date: Mon, 30 Jul 2018 04:48:58 +0000 (+0100) Subject: whoops _mk_pincon bypass X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=cd74285b623763aca5fba0c9ca53c47c167d72d2;p=pinmux.git whoops _mk_pincon bypass --- diff --git a/src/bsv/peripheral_gen/nspi.py b/src/bsv/peripheral_gen/nspi.py index fce899f..18ff9be 100644 --- a/src/bsv/peripheral_gen/nspi.py +++ b/src/bsv/peripheral_gen/nspi.py @@ -40,7 +40,7 @@ class nspi(PBase): def _mk_pincon(self, name, count, typ): assert typ == 'slow', "TODO, make slow mkConnection" - ret = [PBase.mk_pincon(self, name, count, typ)] + ret = [PBase._mk_pincon(self, name, count, typ)] # special-case for gpio in, store in a temporary vector plen = len(self.peripheral.pinspecs) template = "mkConnection({0}.{1},\n\t\t\t{2}.{1});"