Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Connected SPI bus to on-board Flash and SPI peripheral #854

Merged
merged 2 commits into from
Mar 18, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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