targets/sipeed_tang_primer_20k/hdmi: Remove pn_swap on data lines that is no longer required.

This commit is contained in:
Florent Kermarrec 2023-03-02 11:44:14 +01:00
parent 9e73ba53ea
commit 4a724d9d2d
1 changed files with 1 additions and 1 deletions

View File

@ -178,7 +178,7 @@ class BaseSoC(SoCCore):
if with_video_terminal:
hdmi_pads = platform.request("hdmi")
self.comb += hdmi_pads.hdp.eq(1)
self.videophy = VideoHDMIPHY(hdmi_pads, clock_domain="hdmi", pn_swap=["r", "g", "b"])
self.videophy = VideoHDMIPHY(hdmi_pads, clock_domain="hdmi")
#self.add_video_colorbars(phy=self.videophy, timings="640x480@60Hz", clock_domain="hdmi")
self.add_video_terminal(phy=self.videophy, timings="640x480@75Hz", clock_domain="hdmi")