Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

SRSENB: Add SIB7 (GERAN neighbor) support #361

Merged
merged 1 commit into from
Aug 27, 2019

Commits on Aug 4, 2019

  1. SRSENB: Add SIB7 (GERAN neighbor) support

    This adds the required missing bits to the eNB config file parser
    to enable minimalistic support of parsing SIB7 configuration.
    
    SIB7 contains GERAN (GSM) neighbor cell information, which is important
    if you are operating a combined 2G+4G netowrk and want to assist the UEs
    to reselect GSM cells once they move out of LTE coverage.
    
    An example SIB7 section looks as follows:
    
    sib7 = {
        t_resel_geran = 1;
        carrier_freqs_info_list =
        (
            {
                cell_resel_prio = 0;
                ncc_permitted = 255;
                q_rx_lev_min = 0;
                thresh_x_high = 7;
                thresh_x_low = 7;
    
                start_arfcn = 871;
                band_ind = "dcs1800";
                explicit_list_of_arfcns = ( 873, 875, 877 );
            }
    
        );
    };
    
    Closes: srsran#357
    laf0rge committed Aug 4, 2019
    Configuration menu
    Copy the full SHA
    fb61558 View commit details
    Browse the repository at this point in the history