diff options
| author | S.J.R. van Schaik <stephan@synkhronix.com> | 2021-06-07 12:16:29 -0400 |
|---|---|---|
| committer | whitequark <whitequark@whitequark.org> | 2021-06-07 16:30:18 +0000 |
| commit | 2dcb2f8a918f02605c61c505d4641fa794d11037 (patch) | |
| tree | c6f40ad27f6afc0799ed152c2f1806f5d24f4ca9 | |
| parent | e3a1c6221b00c058f921c89e0105edf5e337a006 (diff) | |
nandland_go: 7seg displays should be inverted
| -rw-r--r-- | nmigen_boards/nandland_go.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/nmigen_boards/nandland_go.py b/nmigen_boards/nandland_go.py index 4cece47..78acbc5 100644 --- a/nmigen_boards/nandland_go.py +++ b/nmigen_boards/nandland_go.py @@ -21,9 +21,9 @@ class NandlandGoPlatform(LatticeICE40Platform): *ButtonResources(pins="53 51 54 52"), Display7SegResource(0, - a="3", b="4", c="93", d="91", e="90", f="1", g="2"), + a="3", b="4", c="93", d="91", e="90", f="1", g="2", invert=True), Display7SegResource(1, - a="100", b="99", c="97", d="95", e="94", f="8", g="96"), + a="100", b="99", c="97", d="95", e="94", f="8", g="96", invert=True), UARTResource(0, rx="73", tx="74"), |
