initial commit of node_sdp_correlator and st_xsq_dp_to_mm
2 unresolved threads
2 unresolved threads
Closes L2SDP-286
Merge request reports
Activity
200 rst => dp_rst, 201 clk => dp_clk, 202 203 in_sosi => xsel_sosi, 204 out_sosi_info => crosslets_sosi, 205 206 mm_mosi => crosslets_mosi_arr(0), 207 mm_miso => crosslets_miso_arr(0) 208 ); 209 210 --------------------------------------------------------------- 211 -- Crosslets Statistics (XST) 212 --------------------------------------------------------------- 213 u_crosslets_stats : ENTITY st_lib.st_xst 214 GENERIC MAP( 215 g_nof_streams => 1, -- c_sdp_P_sq changed this line in version 2 of the diff
54 55 CONSTANT c_nof_data : NATURAL := g_nof_crosslets * g_nof_signal_inputs; 56 CONSTANT c_mm_ram_adr_w : NATURAL := ceil_log2(c_nof_data); 57 CONSTANT c_mm_ram_dat_w : NATURAL := c_nof_complex * g_dsp_data_w; 58 59 SIGNAL ram_wr_mosi : t_mem_mosi := c_mem_mosi_rst; 60 61 SIGNAL reg_sosi_info : t_dp_sosi := c_dp_sosi_rst; 62 SIGNAL in_sosi_rewired : t_dp_sosi := c_dp_sosi_rst; 63 64 BEGIN 65 66 p_in_sosi : PROCESS(in_sosi) 67 BEGIN 68 in_sosi_rewired <= in_sosi; 69 in_sosi_rewired.data(g_dsp_data_w -1 DOWNTO 0) <= in_sosi.re(g_dsp_data_w-1 DOWNTO 0); changed this line in version 2 of the diff
mentioned in commit 0f174685
Please register or sign in to reply