~ruther/vhdl-spi-2

83810d3df03d7aa618451ede026ac726be030d64 — Rutherther 3 months ago b1b126a
fix: do not pass rx_serial_o from spi_multiplexor when not enabled
1 files changed, 1 insertions(+), 1 deletions(-)

M hdl_spi/src/spi_multiplexor.vhd
M hdl_spi/src/spi_multiplexor.vhd => hdl_spi/src/spi_multiplexor.vhd +1 -1
@@ 58,6 58,6 @@ begin  -- architecture a1
  latch_tx_data_o <= latch_tx_data_i when en_i = '1' else'Z';
  latch_sample_data_o <= latch_sample_data_i when en_i = '1' else'Z';
  latch_change_data_o <= latch_change_data_i when en_i = '1' else'Z';
  rx_serial_o <= rx_serial_i;
  rx_serial_o <= rx_serial_i when en_i = '1' else 'Z';

end architecture a1;

Do not follow this link