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