set up defaults for mux
authorLuke Kenneth Casson Leighton <lkcl@lkcl.net>
Fri, 3 Aug 2018 05:18:05 +0000 (06:18 +0100)
committerLuke Kenneth Casson Leighton <lkcl@lkcl.net>
Fri, 3 Aug 2018 05:18:05 +0000 (06:18 +0100)
src/bsv/peripheral_gen/gpio.py

index d86c5827a249b064fd59121ec8a881bccd3cb9fc..b9f8504d7a6f1c626207e22e0d00af3289c3bddc 100644 (file)
@@ -37,8 +37,8 @@ class gpio(PBase):
     def mkslow_peripheral(self, size=0):
         print "gpioslow", self.peripheral, dir(self.peripheral)
         size = len(self.peripheral.pinspecs)
-        dflt = "'b%s" % ("0"*size*2)
-        return "MUX#(%d) mux{0} <- mkmux(%s);\n" % (size, dflt)+ \
+        dflt = "%s" % ("0"*size*2) # XX TODO: read default from config
+        return "MUX#(%d) mux{0} <- mkmux(`b%s);\n" % (size, dflt)+ \
                "GPIO#(%d) gpio{0} <- mkgpio();" % size
 
     def mk_connection(self, count, fabricname, typ):