Skip to content
Snippets Groups Projects
Commit 7f0170e7 authored by Eric Kooistra's avatar Eric Kooistra
Browse files

Use internal SCLK in aduh_quad_scope.

parent 5165d381
No related branches found
No related tags found
No related merge requests found
...@@ -39,8 +39,7 @@ ENTITY aduh_quad_scope IS ...@@ -39,8 +39,7 @@ ENTITY aduh_quad_scope IS
g_ai : t_c_aduh_dd_ai := c_aduh_dd_ai g_ai : t_c_aduh_dd_ai := c_aduh_dd_ai
); );
PORT ( PORT (
-- Sample clock DCLK : IN STD_LOGIC := '0'; -- digital processing clk
SCLK : IN STD_LOGIC := '0'; -- sample clk, use only for simulation purposes
-- Streaming samples (can be from ADU or from internal WG) -- Streaming samples (can be from ADU or from internal WG)
sp_sosi_arr : IN t_dp_sosi_arr(0 TO g_ai.nof_sp-1) -- = [0:3] = Signal Paths [A,B,C,D] sp_sosi_arr : IN t_dp_sosi_arr(0 TO g_ai.nof_sp-1) -- = [0:3] = Signal Paths [A,B,C,D]
...@@ -65,14 +64,15 @@ BEGIN ...@@ -65,14 +64,15 @@ BEGIN
u_dp_scope : ENTITY dp_lib.dp_wideband_sp_arr_scope u_dp_scope : ENTITY dp_lib.dp_wideband_sp_arr_scope
GENERIC MAP ( GENERIC MAP (
g_sim => g_sim, g_sim => g_sim,
g_use_sclk => FALSE,
g_nof_streams => g_ai.nof_sp, g_nof_streams => g_ai.nof_sp,
g_wideband_factor => c_wideband_factor, g_wideband_factor => c_wideband_factor,
g_wideband_big_endian => FALSE, g_wideband_big_endian => FALSE,
g_dat_w => g_ai.port_w g_dat_w => g_ai.port_w
) )
PORT MAP ( PORT MAP (
-- Sample clock -- Digital processing clk
SCLK => SCLK, DCLK => DCLK,
-- Streaming samples -- Streaming samples
sp_sosi_arr => dp_sosi_arr -- = [3:0] = Signal Paths [D,C,B,A] sp_sosi_arr => dp_sosi_arr -- = [3:0] = Signal Paths [D,C,B,A]
......
...@@ -296,8 +296,8 @@ BEGIN ...@@ -296,8 +296,8 @@ BEGIN
g_ai => c_aduh_dd_ai g_ai => c_aduh_dd_ai
) )
PORT MAP ( PORT MAP (
-- Sample clock -- Digital processing clock
SCLK => SCLK, DCLK => dp_clk,
-- Streaming samples (can be from ADU or from internal WG) -- Streaming samples (can be from ADU or from internal WG)
sp_sosi_arr => aduh_sosi_arr sp_sosi_arr => aduh_sosi_arr
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment