liteusb: more pep8 (when convenient), should be almost OK
authorFlorent Kermarrec <florent@enjoy-digital.fr>
Mon, 13 Apr 2015 12:47:44 +0000 (14:47 +0200)
committerFlorent Kermarrec <florent@enjoy-digital.fr>
Mon, 13 Apr 2015 12:47:44 +0000 (14:47 +0200)
misoclib/com/liteusb/common.py
misoclib/com/liteusb/core/crc.py
misoclib/com/liteusb/core/depacketizer.py
misoclib/com/liteusb/frontend/uart.py
misoclib/com/liteusb/phy/ft2232h.py

index 2f6f9772e36a95fb48b65db3e94459f01e5b9854..eaa9f162cd5b06e1f78d00d7ff0975580da7e982 100644 (file)
@@ -1,3 +1,5 @@
+import random
+
 from migen.fhdl.std import *
 from migen.genlib.fsm import *
 from migen.actorlib.fifo import *
@@ -38,12 +40,10 @@ class LiteUSBTimeout(Module):
             )
         self.comb += self.done.eq(cnt == cnt_max)
 
+
 #
 # TB
 #
-import random
-
-
 def randn(max_n):
     return random.randint(0, max_n-1)
 
index 83aab31314016054ebfb6cf1b4b3fa0c26324f79..bfea13f6a405aa0e9a419609064feb6c66405ce2 100644 (file)
@@ -103,6 +103,7 @@ class CRC32(Module):
     polynom = 0x04C11DB7
     init = 2**width-1
     check = 0xC704DD7B
+
     def __init__(self, dat_width):
         self.d = Signal(dat_width)
         self.value = Signal(self.width)
index 77a8ad9c9e714c043e8c873a9434ad332313d8a4..aa308b010fa151ea1e4fa4d716528683e145929c 100644 (file)
@@ -77,7 +77,9 @@ class LiteUSBDepacketizer(Module):
             source.eop.eq(eop),
             source.d.eq(sink.d),
             sink.ack.eq(source.ack),
-            If((eop & sink.stb & source.ack) | self.timeout.done, NextState("WAIT_SOP"))
+            If((eop & sink.stb & source.ack) | self.timeout.done,
+                NextState("WAIT_SOP")
+            )
         )
 
         self.sync += \
@@ -94,7 +96,8 @@ class LiteUSBDepacketizer(Module):
 #
 src_data = [
     0x5A, 0xA5, 0x5A, 0xA5, 0x01, 0x00, 0x00, 0x00, 0x04, 0x00, 0x01, 0x02, 0x03,
-    0x5A, 0xA5, 0x5A, 0xA5, 0x12, 0x00, 0x00, 0x00, 0x08, 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,
+    0x5A, 0xA5, 0x5A, 0xA5, 0x12, 0x00, 0x00, 0x00, 0x08, 0x00, 0x01, 0x02, 0x03,
+    0x04, 0x05, 0x06, 0x07,
 ]*4
 
 
index 1147fa68e77545f7ea3171fe4ee77cf3062cd860..68a032ec54847787d64f7797ce43f19f4539c77d 100644 (file)
@@ -24,7 +24,7 @@ class LiteUSBUART(Module, AutoCSR):
 
         # TX
         tx_start = self._rxtx.re
-        tx_done  = self.ev.tx.trigger
+        tx_done = self.ev.tx.trigger
 
         self.sync += \
             If(tx_start,
index d8e70dd66b21fd3663ae73adde877dfdcd871372..349dc60838d4167c960acd3068942fbb8cf276b1 100644 (file)
@@ -68,7 +68,7 @@ class FT2232HPHY(Module):
         read_time_en, max_read_time = anti_starvation(read_time)
         write_time_en, max_write_time = anti_starvation(write_time)
 
-        data_w_accepted  = Signal(reset=1)
+        data_w_accepted = Signal(reset=1)
 
         fsm = FSM()
         self.submodules += RenameClockDomains(fsm, {"sys": "ftdi"})
@@ -97,8 +97,8 @@ class FT2232HPHY(Module):
         # Read / Write Actions
         #
 
-        data_w  = Signal(dw)
-        data_r  = Signal(dw)
+        data_w = Signal(dw)
+        data_r = Signal(dw)
         data_oe = Signal()
 
         if hasattr(pads, "oe_n"):
@@ -256,7 +256,7 @@ class UserModel(Module, RandRun):
 
 LENGTH = 512
 model_rd_data = [i%256 for i in range(LENGTH)][::-1]
-user_wr_data  = [i%256 for i in range(LENGTH)]
+user_wr_data = [i%256 for i in range(LENGTH)]
 
 
 class TB(Module):