mirror of
https://github.com/enjoy-digital/litex.git
synced 2025-01-04 09:52:26 -05:00
core/video/VideoS7GTPHDMIPHY: Swap R/B components.
This commit is contained in:
parent
3d3229fb49
commit
04e9af9fef
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue