liteusb: pep8 (E201)

This commit is contained in:
Florent Kermarrec 2015-04-13 14:29:44 +02:00
parent 4974fd6bc9
commit ce0e818d66
2 changed files with 10 additions and 12 deletions

View File

@ -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:

View File

@ -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),