feat(data): do not reset config when switching from ILS to DATA
1 files changed, 1 insertions(+), 1 deletions(-) M src/data_link/ilas_parser.vhd
M src/data_link/ilas_parser.vhd => src/data_link/ilas_parser.vhd +1 -1
@@ 116,7 116,7 @@ begin -- architecture a1 co_unexpected_char <= '0'; co_wrong_chksum <= '0'; - if ci_state /= DATA then + if ci_state /= DATA and ci_state /= ILS then link_config_data <= (others => '0'); finished <= '0'; end if;