From 3addd587b6ed7c4d7c69ef5ec032edddca851613 Mon Sep 17 00:00:00 2001 From: Romain Dolbeau Date: Sun, 4 Apr 2021 17:20:53 +0200 Subject: [PATCH] 640x480@60Hz (lowest bandwidth option yet) --- litex/soc/cores/video.py | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/litex/soc/cores/video.py b/litex/soc/cores/video.py index 2c340ff37..9d2c7b9c2 100644 --- a/litex/soc/cores/video.py +++ b/litex/soc/cores/video.py @@ -24,6 +24,17 @@ vbits = 12 # Video Timings ------------------------------------------------------------------------------------ video_timings = { + "640x480@60Hz" : { + "pix_clk" : 25.175e6, + "h_active" : 640, + "h_blanking" : 160, + "h_sync_offset" : 16, + "h_sync_width" : 96, + "v_active" : 480, + "v_blanking" : 45, + "v_sync_offset" : 10, + "v_sync_width" : 2, + }, "640x480@75Hz" : { "pix_clk" : 31.5e6, "h_active" : 640,