pep8 cleanup
authorLuke Kenneth Casson Leighton <lkcl@lkcl.net>
Mon, 2 Jul 2018 09:56:01 +0000 (10:56 +0100)
committerLuke Kenneth Casson Leighton <lkcl@lkcl.net>
Mon, 2 Jul 2018 09:56:01 +0000 (10:56 +0100)
src/bsv/actual_pinmux.py
src/spec/ifaceprint.py
src/test_bsv/tests/test_pinmux.py

index 58e204002fb857f2b8e38c376906a7f157e7b78b..223d1f8ca4c29c130850920aceff8cd476ac96c6 100644 (file)
@@ -75,8 +75,8 @@ def fmt(ifaces, cells, idx, suffix=None):
     if x == 'input':
         return 'val0'  # inputs don't get passed through to the out mux
     if suffix == '_outen' and x == 'out':
-        return "wr%s%s" % (cells[1], suffix or '') # USE GPIO FOR SELECTION
-    if x == 'out': # sigh hack, should be using interface_decl
+        return "wr%s%s" % (cells[1], suffix or '')  # USE GPIO FOR SELECTION
+    if x == 'out':  # sigh hack, should be using interface_decl
         suffix = ''
     return "wr%s%s" % (cell, suffix or '')
 
index d0e9e24fb95fd220e039a7280eb0954e38a26c7e..e15d102192dbd4ab9c99165b704a2c35bc039ee0 100644 (file)
@@ -167,8 +167,8 @@ def check_functions(of, title, bankspec, fns, pins, required, eint, pwm,
             of.write("* %s %d %s%d/%d\n" % (fname, pin_, bank, pin, mux))
 
         if removedcount != count:
-            print ("not all found", name, removedcount, count, title, found, \
-                    fns[fname])
+            print ("not all found", name, removedcount, count, title, found,
+                   fns[fname])
             print ("pins found", pinfound)
 
         # fnidx.sort(fnsort)
index a3aa80cee2c2ce638992996922b7b1a4313f476a..7fef0ac3322ac30e8256a337d0f8b244be3cb46f 100644 (file)
@@ -29,8 +29,8 @@ def pinmux_basic_test(dut):
 
     if dut.iocell_side_io2_cell_out != 0:
         raise TestFailure(
-            "gpioa_a2=0/mux=0/out=1 %s iocell_io2 != 0" % \
-                    str(dut.iocell_side_io2_cell_out ))
+            "gpioa_a2=0/mux=0/out=1 %s iocell_io2 != 0" %
+            str(dut.iocell_side_io2_cell_out))
 
     dut.peripheral_side_gpioa_a2_out_in = 1
 
@@ -38,14 +38,14 @@ def pinmux_basic_test(dut):
 
     if dut.iocell_side_io2_cell_out != 1:
         raise TestFailure(
-            "gpioa_a2=0/mux=0/out=1 %s iocell_io2 != 1" % \
-                    str(dut.iocell_side_io2_cell_out ))
+            "gpioa_a2=0/mux=0/out=1 %s iocell_io2 != 1" %
+            str(dut.iocell_side_io2_cell_out))
 
     # GPIO2-in test (first see if it's tri-state)
     if str(dut.peripheral_side_gpioa_a2_in) != "x":
         raise TestFailure(
-            "gpioa_a2=0/mux=0/out=1 %s gpio_a2_in != x" % \
-                    str(dut.peripheral_side_gpioa_a2_in))
+            "gpioa_a2=0/mux=0/out=1 %s gpio_a2_in != x" %
+            str(dut.peripheral_side_gpioa_a2_in))
 
     dut.peripheral_side_gpioa_a2_outen_in = 0
     dut.iocell_side_io2_cell_in_in = 0
@@ -53,27 +53,26 @@ def pinmux_basic_test(dut):
 
     if dut.peripheral_side_gpioa_a2_in != 0:
         raise TestFailure(
-            "iocell_io2=0/mux=0/out=0 %s gpioa_a2 != 0" % \
-                    str(dut.peripheral_side_gpioa_a2_in))
+            "iocell_io2=0/mux=0/out=0 %s gpioa_a2 != 0" %
+            str(dut.peripheral_side_gpioa_a2_in))
 
     dut.iocell_side_io2_cell_in_in = 1
     yield Timer(2)
 
     if dut.peripheral_side_gpioa_a2_in != 1:
         raise TestFailure(
-            "iocell_io2=1/mux=0/out=0 %s gpioa_a2 != 1" % \
-                    str(dut.peripheral_side_gpioa_a2_in))
+            "iocell_io2=1/mux=0/out=0 %s gpioa_a2 != 1" %
+            str(dut.peripheral_side_gpioa_a2_in))
 
     dut.peripheral_side_gpioa_a2_outen_in = 1
     dut.iocell_side_io2_cell_in_in = 0
     yield Timer(2)
-    dut._log.info("gpioa_a2_in %s" % dut.peripheral_side_gpioa_a2_in )
-
+    dut._log.info("gpioa_a2_in %s" % dut.peripheral_side_gpioa_a2_in)
 
     if dut.iocell_side_io2_cell_out != 1:
         raise TestFailure(
-            "gpioa_a2=0/mux=0/out=1 %s iocell_io2 != 1" % \
-                    str(dut.iocell_side_io2_cell_out ))
+            "gpioa_a2=0/mux=0/out=1 %s iocell_io2 != 1" %
+            str(dut.iocell_side_io2_cell_out))
 
     # UART
     yield Timer(2)
@@ -84,8 +83,8 @@ def pinmux_basic_test(dut):
 
     if dut.iocell_side_io0_cell_out != 1:
         raise TestFailure(
-            "uart_tx=1/mux=0/out=1 %s iocell_io0 != 1" % \
-                    str(dut.iocell_side_io0_cell_out ))
+            "uart_tx=1/mux=0/out=1 %s iocell_io0 != 1" %
+            str(dut.iocell_side_io0_cell_out))
 
     dut.peripheral_side_uart_tx_in = 0
 
@@ -93,8 +92,8 @@ def pinmux_basic_test(dut):
 
     if dut.iocell_side_io0_cell_out != 0:
         raise TestFailure(
-            "uart_tx=0/mux=0/out=1 %s iocell_io0 != 0" % \
-                    str(dut.iocell_side_io0_cell_out ))
+            "uart_tx=0/mux=0/out=1 %s iocell_io0 != 0" %
+            str(dut.iocell_side_io0_cell_out))
 
     dut._log.info("Ok!")
     yield Timer(2)