Commit c6107fd0 authored by jperaldi's avatar jperaldi

PLMN ID in configuration file needs to be changed to fullfill what is writtent...

PLMN ID in configuration file needs to be changed to fullfill what is writtent in Sequans 5G SIM, to allow it to trigger attach procedure
parent 1ab7bf31
...@@ -10,8 +10,23 @@ gNBs = ...@@ -10,8 +10,23 @@ gNBs =
gNB_name = "gNB-OAI"; gNB_name = "gNB-OAI";
// Tracking area code, 0x0000 and 0xfffe are reserved values // Tracking area code, 0x0000 and 0xfffe are reserved values
tracking_area_code = 1; tracking_area_code = 0xa000;
plmn_list = ({ mcc = 208; mnc = 99; mnc_length = 2; snssaiList = ({ sst = 1, sd = 0xffffff }) }); plmn_list = ({
mcc = 001;
mnc = 01;
mnc_length = 2;
snssaiList = (
{
sst = 1;
sd = 0x1; // 0 false, else true
},
{
sst = 1;
sd = 0x112233; // 0 false, else true
}
);
});
nr_cellid = 12345678L; nr_cellid = 12345678L;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment