Using this command in my sketch on MKR1310: Firmware: 1.2.1 ``` connected = modem.joinABP(devAddr, nwkSKey, appSKey); if (!connected) { if(debug)Serial.println("Lora ABP Connection failed !"); while (1) {} } else { if(debug)Serial.println("Connected successful !"); } ``` The "joinABP" is not working anymore since library update from 1.0.14 to 1.0.15 Perhaps the additional "sendAT()" is a problem ? Thanks for help.