Update sipeed_tang_nano_9k.py

add SPI-Interface for the 1.14inch LCD
This commit is contained in:
Marco 2023-03-04 15:25:59 +01:00 committed by GitHub
parent 943cf2636f
commit 8d35591f47
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 8 additions and 0 deletions

View File

@ -75,6 +75,14 @@ _io = [
),
# TODO: SPI/RGB LCD
("spilcd", 0,
Subsignal("clk", Pins("79")),
Subsignal("mosi", Pins("77")),
Subsignal("cs", Pins("48")),
Subsignal("reset", Pins("47")),
Subsignal("rs", Pins("47")),
IOStandard("LVCMOS33"),
),
]
# Connectors ---------------------------------------------------------------------------------------