+cms error : 305 during sending a sms

Iam using wp7608 in mangOH red board,Iam trying to send a sms.But i got an error +CMS ERROR 305
AT
OK
AT+CMGF=1
OK
AT+CMGF?
+CMGF: 1

OK
AT+CSCS?
+CSCS: “GSM”

OK
AT+CMGS=“7259485968”

HI

+CMS ERROR: 305
AT+GMR
SWI9X07Y_02.28.03.03 000000 jenkins 2019/05/21 03:33:04

OK

please tel me how to solve this error

Hi likhith,
CMS error 305 means invalid text mode parameter, are you sending some special character?

It works quite well in my test, below my log:

AT+CMGF?
+CMGF: 0

OK
AT+CMGF=1
OK
AT+CSCS?
+CSCS: "IRA"

OK
AT+CSCS="GSM"
OK
AT+CPMS?
+CPMS: "SM",0,40,"SM",0,40,"SM",0,40

OK
AT+CSMP?
+CSMP: ,,0,0

OK
AT+CMGS="91234567"
> testing <ctrl-z>

+CMGS: 1

OK
AT+CMGS="91234567"
> HI <ctrl-z>

+CMGS: 2

OK

As you are using WP7608, can you also try using the console tool “cm” to send SMS and see does it work? i.e.

cm sms send 7259485968 HI

Thx

root@swi-mdm9x28-wp:~# cm sms send 7259485968 hello
ERROR: Failed to send SMS. Please see log for details

Thanks

Would you please try below and capture the info?

Try to send using PDU, i.e. below for the number in your log:

AT!GSTATUS?
AT+CMGF=0
AT+CMGS=16
> 01000AA12795849586000004D4F29C0E <ctrl-z>

And to get debug legato log

cm radio
log level debug
logread -f
cm sms send 7259485968 hello

Thanks!