# HG changeset patch # User Mychaela Falconia # Date 1520554633 0 # Node ID e61525f082bd82300c3a7fd77b4e2c4c9556524b # Parent f7228c18463a68de3d0262ae33d60f428c4e0927 uptools/atcmd/smsend_pduout.c: added UCS-2 function, some refactoring diff -r f7228c18463a -r e61525f082bd uptools/atcmd/smsend_pduout.c --- a/uptools/atcmd/smsend_pduout.c Thu Mar 08 23:59:42 2018 +0000 +++ b/uptools/atcmd/smsend_pduout.c Fri Mar 09 00:17:13 2018 +0000 @@ -14,21 +14,14 @@ atinterf_exec_cmd_needok("AT+CMGF=0", 0, 0); } -send_in_pdu_mode(da, textsrc, textlen, udh, udhl) - u_char *da, *textsrc, *udh; - unsigned textlen, udhl; +send_pdu_out(pduhex, pdulen) + char *pduhex; + unsigned pdulen; { char *cmdname; void (*callback)(); - u_char pdu[158]; - unsigned pdulen; - char pduhex[317]; char send_cmd[32]; - pdu[0] = 0; - pdulen = make_sms_submit_pdu(da, 0, 0, textsrc, textlen, udh, udhl, - pdu + 1); - make_hex_string(pdu, pdulen + 1, pduhex); if (sms_write_mode) { cmdname = "CMGW"; callback = cmgw_callback; @@ -39,3 +32,35 @@ sprintf(send_cmd, "AT+%s=%u", cmdname, pdulen); atinterf_exec_cmd_needok(send_cmd, pduhex, callback); } + +send_in_pdu_mode(da, textsrc, textlen, udh, udhl) + u_char *da, *textsrc, *udh; + unsigned textlen, udhl; +{ + u_char pdu[158]; + unsigned pdulen; + char pduhex[317]; + + pdu[0] = 0; + pdulen = make_sms_submit_pdu(da, 0, 0, textsrc, textlen, udh, udhl, + pdu + 1); + make_hex_string(pdu, pdulen + 1, pduhex); + send_pdu_out(pduhex, pdulen); +} + +send_pdu_ucs2(da, textsrc, textlen, udh, udhl) + u_char *da, *udh; + u_short *textsrc; + unsigned textlen, udhl; +{ + u_char ucs2_be[140], pdu[158]; + unsigned pdulen; + char pduhex[317]; + + ucs2_out_bigend(textsrc, ucs2_be, textlen); + pdu[0] = 0; + pdulen = make_sms_submit_pdu_8bit(da, 0, 0x08, ucs2_be, textlen * 2, + udh, udhl, pdu + 1); + make_hex_string(pdu, pdulen + 1, pduhex); + send_pdu_out(pduhex, pdulen); +}