Skip to content

Commit d1df45a

Browse files
committed
Updated filename
1 parent 61fd527 commit d1df45a

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ use IEEE.STD_LOGIC_1164.ALL;
33
use IEEE.NUMERIC_STD.ALL;
44
use work.time_multiplex.ALL;
55

6-
entity fake_combiner is
6+
entity linear_buffer is
77
Generic (
88
numChannels : integer
99
);
@@ -17,9 +17,9 @@ entity fake_combiner is
1717
Dout : out STD_LOGIC_VECTOR (15 downto 0) := (others => '0');
1818
DRdy : out STD_LOGIC := '0';
1919
EODout : out STD_LOGIC := '0');
20-
end fake_combiner;
20+
end linear_buffer;
2121

22-
architecture Behavioral of fake_combiner is begin
22+
architecture Behavioral of linear_buffer is begin
2323
output_pipeline : process(clk) begin
2424
if rising_edge(clk) then
2525
if Reset = '1' then

src/design/linear_correlator.vhd

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ architecture Behavioral of linear_correlator is
4545
DoutRdy : out STD_LOGIC := '0');
4646
end component;
4747

48-
component fake_combiner is
48+
component linear_buffer is
4949
Generic (
5050
numChannels : integer
5151
);
@@ -188,7 +188,7 @@ begin
188188

189189
signal correlator_NDin, correlator_EODin : STD_LOGIC;
190190
begin
191-
combine_A : fake_combiner
191+
buff_A : linear_buffer
192192
generic map (
193193
numChannels => numChannels
194194
)
@@ -205,7 +205,7 @@ begin
205205
EODout => A_EODout
206206
);
207207

208-
combine_B : fake_combiner
208+
buff_B : linear_buffer
209209
generic map (
210210
numChannels => numChannels
211211
)

src/design/top.vhd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ architecture Behavioral of top is
9595
end component;
9696

9797
constant numChannels : integer := 1;
98-
constant isMultiTau : boolean := true;
98+
constant isMultiTau : boolean := false;
9999

100100
signal DinCorr : STD_LOGIC_VECTOR (15 downto 0);
101101
signal ChaInSel : STD_LOGIC_VECTOR (channels_to_bits(numChannels) - 1 downto 0);

vivado_project.tcl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ proc checkRequiredFiles { origin_dir} {
2626
"${origin_dir}/src/design/correlator.vhd" \
2727
"${origin_dir}/src/design/counter.vhd" \
2828
"${origin_dir}/src/design/dsp_multiply_and_accumulate.vhd" \
29-
"${origin_dir}/src/design/fake_combiner.vhd" \
29+
"${origin_dir}/src/design/linear_buffer.vhd" \
3030
"${origin_dir}/src/design/linear_correlator.vhd" \
3131
"${origin_dir}/src/design/mac_counter.vhd" \
3232
"${origin_dir}/src/design/multi_tau_correlator.vhd" \
@@ -196,7 +196,7 @@ set files [list \
196196
[file normalize "${origin_dir}/src/design/correlator.vhd"] \
197197
[file normalize "${origin_dir}/src/design/counter.vhd"] \
198198
[file normalize "${origin_dir}/src/design/dsp_multiply_and_accumulate.vhd"] \
199-
[file normalize "${origin_dir}/src/design/fake_combiner.vhd"] \
199+
[file normalize "${origin_dir}/src/design/linear_buffer.vhd"] \
200200
[file normalize "${origin_dir}/src/design/linear_correlator.vhd"] \
201201
[file normalize "${origin_dir}/src/design/mac_counter.vhd"] \
202202
[file normalize "${origin_dir}/src/design/multi_tau_correlator.vhd"] \
@@ -261,7 +261,7 @@ set file [file normalize $file]
261261
set file_obj [get_files -of_objects [get_filesets sources_1] [list "*$file"]]
262262
set_property -name "file_type" -value "VHDL" -objects $file_obj
263263

264-
set file "$origin_dir/src/design/fake_combiner.vhd"
264+
set file "$origin_dir/src/design/linear_buffer.vhd"
265265
set file [file normalize $file]
266266
set file_obj [get_files -of_objects [get_filesets sources_1] [list "*$file"]]
267267
set_property -name "file_type" -value "VHDL" -objects $file_obj

0 commit comments

Comments
 (0)