Browse Source

projects/rgb_panel: Fix video play direction in 'vgen' module

Signed-off-by: Sylvain Munaut <tnt@246tNt.com>
Sylvain Munaut 4 years ago
parent
commit
4eb4d80b88
1 changed files with 1 additions and 1 deletions
  1. 1 1
      projects/rgb_panel/rtl/vgen.v

+ 1 - 1
projects/rgb_panel/rtl/vgen.v

@@ -182,7 +182,7 @@ module vgen #(
 	// Latch request for prev / next frame
 	always @(posedge clk)
 		if (~mode)
-			frame_sel <= cnt_rep_last ? 2'b10 : 2'b00;
+			frame_sel <= cnt_rep_last ? 2'b11 : 2'b00;
 		else if ((fsm_state == ST_ROW_WAIT) && fbw_row_rdy)
 			frame_sel <= 2'b00;
 		else if (ui_up)