Resolve L2SDP-26
2 unresolved threads
2 unresolved threads
Closes L2SDP-26
Merge request reports
Activity
83 90 SIGNAL tx_snk_rst : STD_LOGIC; 84 91 SIGNAL rx_src_rst : STD_LOGIC; 85 92 86 SIGNAL sim_transceiver_gx_tx_snk_in_arr : t_dp_sosi_arr(0 DOWNTO 0); 87 SIGNAL sim_transceiver_gx_tx_snk_out_arr : t_dp_siso_arr(0 DOWNTO 0); 93 SIGNAL tx_fifo_sosi : t_dp_sosi := c_dp_sosi_rst; 94 SIGNAL tx_fifo_siso : t_dp_siso := c_dp_siso_hold; 95 96 TYPE t_reg IS RECORD 97 crc_sosi : t_dp_sosi; 98 crc_cnt : NATURAL RANGE 0 TO 4; changed this line in version 3 of the diff
201 BEGIN 202 crc_siso.ready <= '1'; 203 v := r; 204 v.crc_sosi.valid := '0'; 205 v.crc_sosi.eop := '0'; 206 IF tx_fifo_sosi.eop='1' THEN 207 crc_siso.ready <= '0'; 208 v.crc_sosi.valid := '1'; 209 v.crc_cnt := 1; 210 END IF; 211 IF r.crc_cnt>0 THEN 212 crc_siso.ready <= '0'; 213 v.crc_sosi.valid := '1'; 214 v.crc_cnt := r.crc_cnt + 1; 215 END IF; 216 IF r.crc_cnt=3 THEN changed this line in version 3 of the diff
added 1 commit
- cf64718b - Use c_crc_sz = 4 for CRC size in octets instead of hardcoded 4.
mentioned in commit 04d3712c
Please register or sign in to reply