liteusb: pep8 (E201)
This commit is contained in:
parent
4974fd6bc9
commit
ce0e818d66
|
@ -4,7 +4,7 @@ from migen.actorlib.fifo import *
|
||||||
from migen.flow.actor import EndpointDescription
|
from migen.flow.actor import EndpointDescription
|
||||||
|
|
||||||
user_layout = EndpointDescription(
|
user_layout = EndpointDescription(
|
||||||
[ ("dst", 8),
|
[("dst", 8),
|
||||||
("length", 4*8),
|
("length", 4*8),
|
||||||
("error", 1),
|
("error", 1),
|
||||||
("d", 8)
|
("d", 8)
|
||||||
|
@ -12,9 +12,7 @@ user_layout = EndpointDescription(
|
||||||
packetized=True
|
packetized=True
|
||||||
)
|
)
|
||||||
|
|
||||||
phy_layout = [
|
phy_layout = [("d", 8)]
|
||||||
("d", 8)
|
|
||||||
]
|
|
||||||
|
|
||||||
|
|
||||||
class LiteUSBPipe:
|
class LiteUSBPipe:
|
||||||
|
|
|
@ -43,7 +43,7 @@ class LiteUSBDepacketizer(Module):
|
||||||
preamble[i].eq(preamble[i-1])
|
preamble[i].eq(preamble[i-1])
|
||||||
)
|
)
|
||||||
fsm.act("WAIT_SOP",
|
fsm.act("WAIT_SOP",
|
||||||
If( (preamble[3] == 0x5A) &
|
If((preamble[3] == 0x5A) &
|
||||||
(preamble[2] == 0xA5) &
|
(preamble[2] == 0xA5) &
|
||||||
(preamble[1] == 0x5A) &
|
(preamble[1] == 0x5A) &
|
||||||
(preamble[0] == 0xA5) &
|
(preamble[0] == 0xA5) &
|
||||||
|
|
Loading…
Reference in New Issue