Browse Source

replaced direct read from async SpiMosi_i input by read from registered a_mosi

pull/1/head
T. Meissner 10 years ago
parent
commit
502aec376a
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      syn/SpiSlaveE.vhd

+ 1
- 1
syn/SpiSlaveE.vhd View File

@ -134,7 +134,7 @@ begin
when TRANSFER =>
if s_read_edge then
s_recv_register(v_bit_counter) <= SpiMosi_i;
s_recv_register(v_bit_counter) <= a_mosi;
if (v_bit_counter = 0) then
s_spi_state <= STORE;
else


Loading…
Cancel
Save