Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
0answers
474 views

Send AT Commands to Android Phone

I want to Send AT Command to Android phone. I know SDK does not support this. but there are two solution : change the code of Kernel and release your new Android (it seems it is so hard!) ...
4
votes
2answers
1k views

what is the purpose of using USSD Commands in our J2ME Application? Is this possible?

I heard there is USSD Commands in Mobile.But i dont know what it is? i was googling two more sites.i did not understand it.Please anybody having knowledge about USSD Commands, share with me. How it ...
2
votes
0answers
464 views

AT command in Android

I want to use AT command in my application to set some order to GSM modem. I searched Google but i could not find any good answer! Do you have any solution? and can i use ADB to send AT command to ...
2
votes
2answers
1k views

using php to send AT commands to a mobile phone over bluetooth

I'm using windows 7 and connected my phone using bluetooth. This connection uses a virtual COM port for communication, which I've configured to specified baud rate, flow control, word length, etc. ...
2
votes
2answers
840 views

how to use AT-Command in C#

I tried to send commands to a GSM modem or phone with C# using this code but it`s not working! Can anybody tell me what should I do ? SerialPort sp = new SerialPort(); sp.PortName = "COM42"; ...
2
votes
2answers
402 views

A C# Class to work with AT commands?

Is there a class for AT communication with devices? Like a class which encapsulates AT commands into a .NET interface? It needs to be also able to parse AT responses such as Network Lists. Example : ...
2
votes
2answers
1k views

How to Send/Receive SMS using AT commands?

Can anyone help me to send and receive SMS using AT commands in Python? In case it matters, I'm using Fedora 8. Which phone will be better with Linux (Nokia, Sony Ericson, Samsung,.....)? Will all ...
1
vote
0answers
140 views

How to hide SIM number when sending SMS via AT commands? [closed]

How can I change or hide SIM number, is there a way to do it via AT commands or doing something?
1
vote
1answer
59 views

Is my SIM card faulty or is my provider annoying me?

I'm trying to establish a PPP connection using pppd and AT Commands. This usually works fine with a SIM card of my local provider. However, I received a card from a friend that is living in Germany ...
1
vote
1answer
73 views

Sending Data To A Server With With Siemens MC55

I want to send some pictures for a sever with a GPRS Module. At first i had a sim900 module and I could send data with it with these AT commands: at+cgatt=1;+cstt="myapn";+ciicr; ...
1
vote
1answer
54 views

Can I include a Sender ID when sending AT commands to a mobile phone?

I wish to include a Sender ID instead of a phone number when sending messages using a phone using AT commands. It seems this is not possible. Can anyone confirm this is indeed impossible using AT ...
1
vote
0answers
34 views

Modem gives ERROR after issuing ATDTnnnnnnn

I am attempting to call a remote modem using a local modem connected via USB. Programming language is VB.NET but that is largely irrelevant. After I issue ATDTnnnnnnnnnn[CR][LF] The modem responds ...
1
vote
1answer
399 views

How to send multipart/concatenated SMS to phone using AT command?

I got a computer with a nokia hooked up to it, and using AT Commands I managed to send text messages through my C# program (using TEXT MODE AT COMMANDS, NOT PDU). It's all working fine and I can ...
1
vote
2answers
144 views

Sending Ctrl+Z to a serial port

I'm sending AT-Command to gsm modem through serial port. At the end of the AT-Command I have to terminate the command with Ctrl+z How would I do that in serial port?
1
vote
2answers
327 views

AT command to send messages from my phone

I connected my Nokia 5235 to my pc. I want to send messages by using AT commands from hyperterminal. Is it possible ? What all the settings i need to do for that? regards Parvathi
1
vote
2answers
265 views

AT command - 3G connection to another cell

i'm using sierra wireless modems (compass 880/888, usb 308) and i'm trying to find an AT command that will tell the modem to connect to another cell (to another tower). the reason i want to do it is ...
1
vote
2answers
258 views

How make sure modem is already connected to phone line

I just noticed that if modem was not connected to phone line and you open SerialPort and send an AT command like "AT\r\n" Then your app hangs for about +20 seconds. How can i make sure that already a ...
1
vote
2answers
1k views

how to send arabic sms with at-command in c#

How can I send Arabic SMS with the at command in C#? When I send Arabic messages it shows incorrect characters. I tried using this code: serialPort1.BaseStream.Flush(); string cb = ...
1
vote
4answers
4k views

Windows Mobile 6 AT commands

I'm trying to get CellID using AT commands, but I dont get any response from the modem, mine code looks like below, I send AT+CCED command, but never get any response. HANDLE hCom; char * xpos; char ...
0
votes
0answers
31 views

Motorola Nextel i886 At Commands

I got a Motorola Nextel i886 and i'm trying to send sms via hyperterminal but looks like it haven't support to some at commands. AT OK but when i try to change it to text mode: AT+CMGF=1 Always ...
0
votes
1answer
171 views

Unable to get response from CT63 GSM modem from C# / ASP.NET

I'm currently using Sony Ericsson mobil phones for at SMS service build in C#. The communication with the SE phones is done through USB/Com driver using AT-Commands. All is working fine with the SE ...
0
votes
2answers
142 views

Libudev and AT Commands

I was searching how to send and receive SMS and I have searched a lot starting with how to do it on Linux. All I have found is libudev. I'm confortable with C/C++ so I hope it will fit me. However I'm ...
0
votes
1answer
110 views

Send and read result of an At command to a usb modem in c#

I would like to know how to send and receive the result of an AT command sent to a usb modem. I've found lot of info, but I don't know what is the best way: I've found this : ...
0
votes
1answer
100 views

How to send Ctrl+z with gprs module

i want to send a picture with GPRS module and through a TCP connection to a server. but my picture contains some "1a" (CTRL+Z) value in some bytes. As we know this is the terminator character for ...
0
votes
2answers
468 views

Communication between gsm modem and android device

I have a server running a C# server app. The app is supposed to periodically connect through a GSM modem to a set of devices(touchpads running android 2.2) and download some files. It's the first time ...
0
votes
1answer
150 views

Error 302 when executing AT+CMGL=“ALL”

I'm programming a modem using AT commands. When I execute AT+CMGL="ALL", I get an inconsistent result. Most of the time, it returned Error 302 (operation not allowed). At other times, it returns the ...
0
votes
1answer
97 views

Cellular AT Command sets. How universal are they

Pretty much every phone that has bluetooth (so pretty much every phone) has an AT command interface for controlling the phone. Some base commands are universal due to the fact theat they precede the ...
0
votes
2answers
399 views

How to control the handset using AT commands in java

I know that by using AT commands we can control the handset.As example unlocking screen we can give a specific AT command or moving right to the menu or left or bottom or up we can give specific AT ...
0
votes
0answers
104 views

Sending WAP push messages to Handsets

I want to receive a WAP push messages in handset for testing. I think we can make java program for sending WAP push messages through AT commands. I dont have any idea of implementation. If anyone have ...
0
votes
2answers
627 views

low level bluetooth broadcast

Since bluetooth is a broadcast protocol, is there some way to listen for broadcasts while not discoverable? The idea is to avoid making a device discoverable, and simply listen for broadcasts, check ...
0
votes
3answers
92 views

Counting no. of rings occured in a remote phone

I have created a C# program that can dial a phone. Now what I have to do is count the number of rings occuring in the remote phone device. My C# program uses the command ATDT [phoneno] to dial the ...
0
votes
1answer
444 views

need AT command for sim reset

is there any AT command which can reset the sim in a gsm usb modem. now i am using a MOBIDATA E66 modem. so if any can provid me the command or know similar command then please help me. when i ...
0
votes
2answers
144 views

event handling in com port

i wrote a c++ code to communicate with usb gsm modem using com ports. now i want to be informed immediately when the modem is pulled out or disconnected somehow. can i do this by using event handling ...
0
votes
1answer
675 views

How do you send an extended-ascii AT-command (CCh) from Android bluetooth to a serial device?

This one really has me banging my head. I'm sending alphanumeric data from an Android app, through the BluetoothChatService, to a serial bluetooth adaptor connected to the serial input of a radio ...
0
votes
2answers
179 views

need AT-Command to copy files from sd-card

i have usb-modem that i can comunicate with it using AT-Command. i can send and recive sms using it. we know that we can insert an SD-Card into the usb-modem and use it as a storage device but i been ...
0
votes
3answers
243 views

Rescheduling an at job

Is there a way to change the date of a job that has been issued with the unix at command? I need to do this because my Application has scheduled too many jobs at the same time which will bring the ...
0
votes
1answer
481 views

how to send arabic sms with at-command in text mode (not pdu)

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

AT command to retreive user input on call on mobile phone

I know it is possible to answer a call on a mobile phone with the AT command set. But how can I see which number is calling? After the call is answered I would like the dialer to enter a pin code. ...
0
votes
2answers
323 views

Need help with “at” command on Windows XP - Why the job is not executed?

On Windows XP I'm trying to add a job like this: at 17:07 /every:s dir I expect dir to be executed every Saturday at 17:07, however I don't see anything happens in the command line window. Here ...
0
votes
1answer
514 views

Submitting “operator commands” (e.g. remaining cash SIM credits) via AT commands to GSM phone/modem

Howdy overflowers! I'm a bit stuck investigating the how-to's of sending operator commands (dont know the correct technical term) using my GSM modem, in order to get an "alert" type message response ...
0
votes
2answers
131 views

need to get computer speaking to a cell phone

i have this super manual: http://www.arib.or.jp/IMT-2000/V710Dec08/5_Appendix/R99/27/27005-320.pdf i dont understand whether it is for every phone or just a certain subset i would like to know what ...
0
votes
1answer
152 views

Check whether keypad locked or not using AT-command

How can I check whether keypad of my mobile phone is locked or not using AT+CLCk command. I am using Sony Ericsson k750i which supports this command Thanks in advance
0
votes
2answers
1k views

Send AT-command through bluetooth from python application

how can i send AT-command through bluetooth from a python application? OS:fedora 8 Any one please healp me with the code? which package i need to import? from where can i download it?
0
votes
2answers
998 views

Which standard specifies the AT&W AT command?

While discussing how to process AT commands with a colleague, we discovered that contrary to our belief the command AT&W (store user profile) is not specified in V.250 (it only specifies ATZ and ...
0
votes
4answers
930 views

How to retrieve the telephone number from an AT CMGL response?

I have an application written in C that reads text messages from a modem using AT commands. A typical AT response from the modem looks like this: +CMGL: 1,"REC ...
0
votes
2answers
1k views

SMS by AT commands with GSM mobile is giving error

I am sending SMS by AT commands with GSM mobile phone. I wanna send bulk of message like thousands. I read that by GSM mobile we can send 6-8 sms per minute. But when I send messages then someone are ...
-1
votes
2answers
257 views

AT Commands in Android

I am wondering if someone know what AT Commands are ? i tried to look further on Google but nothing is usefull. Thank you.
-2
votes
0answers
21 views

It's possible to send restricted sms with at commands? [closed]

I need to hide the sim number when sending sms with at commands, i have tried alot of things but no 1 them worked, then i thought that maybe i could send sms as restricted then it won't show the ...