From: Luke Kenneth Casson Leighton Date: Sun, 22 Jul 2018 10:10:07 +0000 (+0100) Subject: add rgbttl interface X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=64c4e573104dc4fc7cf5e3581a9324af831c9fcb;p=pinmux.git add rgbttl interface --- diff --git a/src/bsv/peripheral_gen/base.py b/src/bsv/peripheral_gen/base.py index c77e1cf..a15daf3 100644 --- a/src/bsv/peripheral_gen/base.py +++ b/src/bsv/peripheral_gen/base.py @@ -410,6 +410,7 @@ class PFactory(object): from spi import spi from qspi import qspi from gpio import gpio + from rgbttl import rgbttl for k, v in {'uart': uart, 'rs232': rs232, @@ -421,6 +422,7 @@ class PFactory(object): 'eint': eint, 'sd': sdmmc, 'jtag': jtag, + 'lcd': rgbttl, 'gpio': gpio }.items(): if name.startswith(k):