Also note if you’re using the Sodaq_nbIOT library for Arduino, you’ll have to change the Sodaq_nbIOT.cpp manually. (Hopefully SODAQ will update them soon.)
From these values on row 80:
const uint8_t nConfigCount = 6;
static NameValuePair nConfig[nConfigCount] = {
{ “AUTOCONNECT”, “FALSE” },
{ “CR_0354_0338_SCRAMBLING”, “FALSE” },
{ “CR_0859_SI_AVOID”, “FALSE” },
{ “COMBINE_ATTACH” , “FALSE” },
{ “CELL_RESELECTION” , “FALSE” },
{ “ENABLE_BIP” , “FALSE” },
};
To these:
const uint8_t nConfigCount = 6;
static NameValuePair nConfig[nConfigCount] = {
{ “AUTOCONNECT”, “FALSE” },
{ “CR_0354_0338_SCRAMBLING”, “TRUE” },
{ “CR_0859_SI_AVOID”, “TRUE” },
{ “COMBINE_ATTACH” , “FALSE” },
{ “CELL_RESELECTION” , “FALSE” },
{ “ENABLE_BIP” , “FALSE” },
};