Merge pull request #47 from felixheld/indentation-fixes

Fix all remaining indentation issues in python code
This commit is contained in:
Tim Ansell 2018-01-13 13:29:29 +11:00 committed by GitHub
commit d37cf226d6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 4 additions and 4 deletions

View File

@ -61,7 +61,7 @@ _io = [
Subsignal("tx", Pins("K26")),
Subsignal("rx", Pins("G25")),
IOStandard("LVCMOS18")
),
),
("spiflash", 0, # clock needs to be accessed through primitive
Subsignal("cs_n", Pins("U7")),

View File

@ -28,7 +28,7 @@ class XADC(Module, AutoCSR):
drdy = Signal()
self.specials += Instance("XADC",
# from ug480
# from ug480
p_INIT_40=0x9000, p_INIT_41=0x2ef0, p_INIT_42=0x0400,
p_INIT_48=0x4701, p_INIT_49=0x000f,
p_INIT_4A=0x4700, p_INIT_4B=0x0000,

View File

@ -216,7 +216,7 @@ class LiteXTerm:
if c == b"\r":
sys.stdout.buffer.write(b"\n")
else:
sys.stdout.buffer.write(c)
sys.stdout.buffer.write(c)
sys.stdout.flush()
if self.kernel_image is not None:

View File

@ -43,7 +43,7 @@ class RemoteServer(EtherboneIPC):
if packet == 0:
break
except:
break
break
packet = EtherbonePacket(packet)
packet.decode()