otsdaq_prepmodernization
v2_05_02_indev
Return to top level
Main Page
Classes
Files
File List
udp_data_splicer.vhd
1
-- Author: Ryan Rivera, FNAL
2
3
library
IEEE
;
4
use
IEEE.std_logic_1164.
all
;
5
use
IEEE.std_logic_arith.
all
;
6
use
IEEE.std_logic_unsigned.
all
;
7
8
entity
udp_data_splicer
is
9
port
(
10
clk
:
in
std_logic
;
11
user_data
:
in
std_logic_vector
(
7
downto
0
)
;
12
gen_data
:
in
std_logic_vector
(
7
downto
0
)
;
13
14
sel_user
:
in
std_logic
;
15
16
udp_data_out
:
out
std_logic_vector
(
7
downto
0
)
17
)
;
18
end
;
19
20
21
architecture
udp_data_splicer_arch
of
udp_data_splicer
is
22
23
signal
delay_sel_user
:
std_logic
;
24
signal
latched_user_data
,
weird_sim_fix
:
std_logic_vector
(
7
downto
0
)
;
25
26
begin
27
28
udp_data_out
<=
gen_data
when
delay_sel_user
=
'
0
'
else
latched_user_data
;
29
30
weird_sim_fix
<=
user_data
after
1
ns
;
-- simulation clock is confused,.. so force clock latch to work.
31
32
process
(clk)
33
begin
34
if
rising_edge
(
clk
)
then
35
latched_user_data
<=
weird_sim_fix
;
36
delay_sel_user
<=
sel_user
;
37
end
if
;
38
end
process
;
39
40
end
udp_data_splicer_arch
;
udp_data_splicer
Definition:
udp_data_splicer.vhd:8
otsdaq_prepmodernization
firmware
g-2
KickerControllerFirmware
oei
udp_data_splicer.vhd
Generated on Wed Apr 29 2020 18:41:42 for otsdaq_prepmodernization by
1.8.5