Skip to content

Commit

Permalink
Connected SPI bus to on-board Flash and SPI peripheral (#854)
Browse files Browse the repository at this point in the history
  • Loading branch information
stnolting committed Mar 18, 2024
2 parents 0a0afa1 + f657c0d commit fa20793
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion rtl/processor_templates/neorv32_ProcessorTop_UP5KDemo.vhd
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,12 @@ begin
twi_scl_i => con_twi_scl_i, -- serial clock line sense input
twi_scl_o => con_twi_scl_o, -- serial clock line output (pull low only)
-- PWM (available if IO_PWM_NUM_CH > 0) --
pwm_o => con_pwm_o -- pwm channels
pwm_o => con_pwm_o, -- pwm channels
-- SPI (available if IO_SPI_EN = true) --
spi_clk_o => con_spi_sck, -- SPI clock
spi_dat_o => con_spi_sdo, -- SPI Data out (MOSI)
spi_dat_i => con_spi_sdi, -- SPI Data in (MISO)
spi_csn_o => con_spi_csn -- SPI CSn
);

-- SPI: on-board flash --
Expand Down

0 comments on commit fa20793

Please sign in to comment.