tags:

views:

604

answers:

2

Hi All,

I want to send At command throug my application to modem. Can some one please let me know how to send AT command thr my application??

Do we need Phone object to send AT command???

The ATResponseParser class parses part of the AT command syntax used to communicate with the mobile radio hardware in a mobile handset. This is, in fact, a command syntax very much like the AT command syntax used by modems, a standard described in the 3GPP document number TS 27.007 and related specifications.

I ant to send below AT command to Mode. 6.5 Hangup call +CHUP

Table 13a: +CHUP action command syntax

Command

Possible response(s)

+CHUP

+CHUP=?

Please help me.

Regards, Jitendra Kumar

+1  A: 

There is no method in the Android SDK to let you send AT commands directly to the modem.

All the low-level telephony workings are implemented using internal APIs.

Christopher