~ruther/jesd204b-vhdl

ref: 6a6f04f9544bfeee7697e510299cedaf7db3ebea jesd204b-vhdl/src/transport/transport_pkg.vhd -rw-r--r-- 454 bytes
6a6f04f9 — František Boháček fix(link): check that characters in ilas parser are control characters 2 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
library ieee;
use ieee.std_logic_1164.all;
use work.data_link_pkg.all;

package transport_pkg is

  type sample is record
    data      : std_logic_vector;--(SAMPLE_SIZE - 1 downto 0);
    ctrl_bits : std_logic_vector;--(CONTROL_SIZE - 1 downto 0);
  end record sample;

  type frame_character_array is array (natural range <>) of frame_character;
  type samples_array is array (natural range <>, natural range <>) of sample;

end package transport_pkg;
Do not follow this link