Skip to content

Commit

Permalink
ad719x: Tie SPI miso to GPIO
Browse files Browse the repository at this point in the history
  • Loading branch information
StancaPop committed Oct 16, 2024
1 parent 7d6f779 commit 638fb1c
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions projects/ad719x_asdz/de10nano/system_top.v
Original file line number Diff line number Diff line change
Expand Up @@ -151,16 +151,18 @@ module system_top (
// instantiations

// unused
assign gpio_i[63:34] = gpio_o[63:34];
assign gpio_i[63:35] = gpio_o[63:35];

// GPIO outputs
assign ltc2308_cs = gpio_o[33];
assign ad719x_sync_n = gpio_o[32];

assign ltc2308_cs = gpio_o[33];
assign ad719x_sync_n = gpio_o[32];

assign gpio_bd_o[7:0] = gpio_o[7:0];

// GPIO inputs

assign gpio_i[34] = ad719x_spi_miso;
assign gpio_i[31:14] = gpio_o[31:14];
assign gpio_i[13:8] = gpio_bd_i[5:0];

Expand Down

0 comments on commit 638fb1c

Please sign in to comment.