bench: Add IPG after send_data
This commit is contained in:
parent
1f353fcb2f
commit
76301f0a97
@ -12,6 +12,7 @@ package body bench_pkg is
|
||||
procedure send_data(signal rx_p : inout std_logic; constant data : in byte_vector) is
|
||||
begin
|
||||
for i in data'low to data'high loop
|
||||
report (" TX Byte: " & to_hstring(data(i)));
|
||||
for j in data(i)'low to data(i)'high loop
|
||||
rx_p <= not data(i)(j);
|
||||
wait for 50 ns;
|
||||
@ -19,5 +20,7 @@ package body bench_pkg is
|
||||
wait for 50 ns;
|
||||
end loop;
|
||||
end loop;
|
||||
wait for 16 us; -- IPG
|
||||
report "Frame TX complete";
|
||||
end procedure send_data;
|
||||
end package body bench_pkg;
|
||||
|
Loading…
Reference in New Issue
Block a user