constant TYPE_ACK : std_logic_vector(2 downto 0) := "101";
constant TYPE_ILLEGAL : std_logic_vector(2 downto 0) := "111";
+ constant ERROR_OK : std_logic_vector(2 downto 0) := "000"; --transmission ok
+ constant ERROR_ENC : std_logic_vector(2 downto 0) := "001"; --transmission error by encoding
+ constant ERROR_REC : std_logic_vector(2 downto 0) := "010"; --transmission error, reconstructed
+ constant ERROR_FAT : std_logic_vector(2 downto 0) := "011"; --transmission error, fatal
+ constant ERROR_NC : std_logic_vector(2 downto 0) := "101"; --media not connected
subtype F1_POSITION is integer range 47 downto 32;
subtype F2_POSITION is integer range 31 downto 16;