0

Is it possible to send arabic sms with at-command in text mode (not pdu) and get a delivery report?

David Hall
  • 32,624
  • 10
  • 90
  • 127
mahdi
  • 16,257
  • 15
  • 52
  • 73

2 Answers2

1

It depends on what the device supports. The AT interface itself is ASCII only, so if you want to do anything other than ASCII text you need a device that provides you a way to put Arabic text over that interface - effectively an encoding scheme, at which point you might as well be using PDU mode anyway.

Vicky
  • 12,934
  • 4
  • 46
  • 54
0

You could put the modem in HEX mode with AT+CSCS="HEX", turn on delivery report with AT+CNMI command, and encode your message in unicode format for AT+CMGS command. Each character should be represented by four hexadecimal digits.

iMan Biglari
  • 4,674
  • 1
  • 38
  • 83