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

Remove (I) from sensitivity list arguments.

parent 4412b76e
No related branches found
No related tags found
No related merge requests found
...@@ -233,7 +233,7 @@ begin ...@@ -233,7 +233,7 @@ begin
-- ADC/WG Mux (Input Select) -- ADC/WG Mux (Input Select)
----------------------------------------------------------------------------- -----------------------------------------------------------------------------
gen_mux : for I in 0 to c_sdp_S_pn - 1 generate gen_mux : for I in 0 to c_sdp_S_pn - 1 generate
p_mux : process(ant_sosi_arr(I), wg_sosi_arr(I)) p_mux : process(ant_sosi_arr, wg_sosi_arr)
begin begin
-- Default use the ADC data -- Default use the ADC data
nxt_mux_sosi_arr(I).data <= ant_sosi_arr(I).data; nxt_mux_sosi_arr(I).data <= ant_sosi_arr(I).data;
...@@ -284,7 +284,7 @@ begin ...@@ -284,7 +284,7 @@ begin
-- Concatenate input data streams with BSN framing -- Concatenate input data streams with BSN framing
----------------------------------------------------------------------------- -----------------------------------------------------------------------------
gen_concat : for I in 0 to c_sdp_S_pn - 1 generate gen_concat : for I in 0 to c_sdp_S_pn - 1 generate
p_concat : process(mux_sosi_arr(I), bs_sosi) p_concat : process(mux_sosi_arr, bs_sosi)
begin begin
st_sosi_arr(I) <= bs_sosi; -- timestamp st_sosi_arr(I) <= bs_sosi; -- timestamp
st_sosi_arr(I).data <= inp_sosi_arr(I).data; st_sosi_arr(I).data <= inp_sosi_arr(I).data;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment