From 2dcb2f8a918f02605c61c505d4641fa794d11037 Mon Sep 17 00:00:00 2001 From: "S.J.R. van Schaik" Date: Mon, 7 Jun 2021 12:16:29 -0400 Subject: nandland_go: 7seg displays should be inverted --- nmigen_boards/nandland_go.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'nmigen_boards') 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"), -- cgit v1.2.3