Skip to content

Commit

Permalink
changes to brot
Browse files Browse the repository at this point in the history
  • Loading branch information
sylefeb committed Dec 17, 2023
1 parent 2eedb40 commit 73359b3
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions frameworks/boards/brot/brot.v
Original file line number Diff line number Diff line change
Expand Up @@ -220,6 +220,10 @@ assign LED_G = ~lg;
assign LED_B = ~lb;
`endif

`ifdef PARALLEL_SCREEN
wire prlscreen_unused;
`endif

M_main __main(
.clock(CLK_48),
.out_clock(design_clk),
Expand Down Expand Up @@ -262,12 +266,12 @@ M_main __main(
`ifdef PARALLEL_SCREEN
.out_prlscreen_d({GPIO6,GPIO7,GPIO4,GPIO5,GPIO2,GPIO3,GPIO0,GPIO1}),
.out_prlscreen_resn(PMOD_B1),
.out_prlscreen_csn (PMOD_B7),
.out_prlscreen_csn (/*PMOD_B7*/prlscreen_unused),
.out_prlscreen_rs (PMOD_B2),
.out_prlscreen_clk (PMOD_B8),
`endif
`ifdef UART
.out_uart_tx(PMOD_B9),
.out_uart_tx(PMOD_B7),
.in_uart_rx (PMOD_B10),
`endif
`ifdef UART2
Expand Down

0 comments on commit 73359b3

Please sign in to comment.