Hi Reynaldo, > > It seems to be registered now, but when sending a sms it fails (+CME > Error 549), I attach a full log including the failed sms sending. > Error 549 seems to be 'incorrect PDU length'. Which means this modem works differently from every single other modem on the market. Try quirking the sms atom driver to submit the full length, not just the tpdu length. E.g. something like: if (OFONO_VENDOR_CINTERION) len = snprintf(buf, sizeof(buf), "AT+CMGS=%d\r", pdu_len); else len = snprintf(buf, sizeof(buf), "AT+CMGS=%d\r", tpdu_len); Regards, -Denis