Forum Discussion
Altera_Forum
Honored Contributor
8 years agoTrying to implement SPI slave in Cyclone IV - why this isn't working?
Hi, i'm trying to implement some practical stuff in Cyclone IV. For a start i need SPI slave which will write data received from master to dual port RAM. I'm struggling with basics in SPI receiver co...
Altera_Forum
Honored Contributor
8 years agoAs you can see it in the RTL view, MOSI signal is not binded.
Your code tries to invert the output signal in the output signal, you never use the input signal. To make a very simple inverted loopback, you should invert the mosi signal. miso <= ~mosi;