From 04e9af9fef430f55c1a0f615f7cece83b2b05bed Mon Sep 17 00:00:00 2001 From: Florent Kermarrec Date: Mon, 17 Jan 2022 18:13:30 +0100 Subject: [PATCH] core/video/VideoS7GTPHDMIPHY: Swap R/B components. --- litex/soc/cores/video.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/litex/soc/cores/video.py b/litex/soc/cores/video.py index baec4e7f3..618f4deb6 100644 --- a/litex/soc/cores/video.py +++ b/litex/soc/cores/video.py @@ -963,7 +963,7 @@ class VideoS7GTPHDMIPHY(Module): self.comb += cdc.source.ready.eq(1) # No backpressure. # 20:1 Serialization + Differential Signaling. - c2d = {"r": 2, "g": 1, "b": 0} + c2d = {"r": 0, "g": 1, "b": 2} class GTPPads: def __init__(self, p, n): self.p = p