Questions tagged [at-command]

AT Commands are text commands for communicating with a modem. Historically also called Hayes Command Set. For questions about the `at` command line tool use the tag [at-utility].

The most important, general specification covering AT commands is the ITU specification V.250 (formerly known as V.25ter). AT commands related to mobile phones are standardized by 3GPP in 27.007 (with some commands specified in 27.005). Historically, early AT commands were developed by modem manufacturer Hayes.

An AT command can be one of two fundamental types, action command or parameter command. This is important to distinguish because valid syntax for such commands is different (although specifications unfortunately sometimes mess up here).

Responses from the modem can be of three fundamental types:

Final result code

  • Indicates that the execution of the currently running AT command is finished. Examples: OK and ERROR.

Intermediate result code or Information text

  • Responses related to a command that comes before the final result code. Examples: CONNECT and +CPBR.

Unsolicited result code

  • Responses that the modem issues independently of any running AT command as response to certain events (in the modem). Examples: RING and +CREG.

References

1408 questions
0
votes
3 answers

AT Commands CMGS return ERROR

I am using Prolink PSH300 HSUPA GSM Modem connect to my laptop and using tera term to test the connect. First I entered AT it will response me OK AT OK AT+CMGF=1 OK AT+CMGS="+6581XXXXXX" (then I pressed enter error was returned) ERROR…
user236501
  • 8,538
  • 24
  • 85
  • 119
0
votes
2 answers

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 going and someone not. I am getting information…
Deepak
  • 7,507
  • 3
  • 24
  • 26
0
votes
0 answers

AT command complete output

I want to know how can I get complete output from AT commands? I am sending the AT command to Telit UC864-G via hub and the command looks like following: echo "*AT COMMAND*" > /dev/ttyUSB0 For example when I issue: echo "AT+CGQREQ=?" >…
user1582256
  • 31
  • 1
  • 4
0
votes
0 answers

how to read from port and write an exe file without coruption

I am using AT commands and downloading a file using FTP . We have everything working until we send RETR a.exe . The file data is also sent on the port. But it contains the response headers like RECEIVE:1,1400 , 150 connection accepted etc. How do we…
user180175
  • 23
  • 8
0
votes
0 answers

Get ciphering algorithm via AT Commands

I'm trying to get what kind of ciphering algorithm is used by a phone at the current moment via AT Commands. Usually it's A5/1 or A5/0. Has anyone faced a similar situation? Do you know any other way to get the algorithm? Thanks in advance.
tzoukos
  • 86
  • 6
0
votes
2 answers

E160E USB GSM Modem Continuously Dumps Data Into The Serial Port

I'm using a python script to send using Serial , a simple AT Command in this case "AT". That normally returns OK , if everything is going well. The problem is that after a few seconds the GSM Modem Will Dump the following. RSSI:19 (yes i know this…
PythonWolf
  • 1,205
  • 1
  • 9
  • 17
0
votes
2 answers

Is it right way using background worker

I want to read the messages from GSM modem in a c# application. I have written the following code and used background worker for implementing Thread.sleep() on a separate thread. But the point at which i use port.ReadExisting(), nothing is being…
Shiridish
  • 4,942
  • 5
  • 33
  • 64
0
votes
1 answer

How to judge a USIM card in a mobile data module(WCDMA) is out of balance?

I used a 3G(WCDMA) mobile data modern, which dail up in embedded linux, sometimes I find the USIM card is out of balance, so it can't dialup normal, I just search the modern manual to find the AT command can be help. I use command called "SYSINFO",…
xtank
  • 1
0
votes
1 answer

AT command to disconnect the dialup TAP connection

In our project, we dial a particular number, connect and then send the message successfully. After sending the message, we want to disconnect the call by sending the AT commands. After sending the message successfully, we send #EOT#CR and then send…
user977601
  • 503
  • 2
  • 7
  • 16
0
votes
5 answers

What is meant by @ in css?

I`m trying to manipulate the css of the zimbra, I do not mean a thing, in some style files i found this: body { @ChromeBg@ } who can explain the usage of @, after and before ChromeBg?
bizzr3
  • 1,925
  • 4
  • 24
  • 37
-1
votes
0 answers

QUECTEL EC21 http get response is different on each query

I'm trying to run get query on arduino. here are my code. #include // https://github.com/alextaujenis/RBD_Timer RBD::Timer timer(500); int cnt = -1; const String webURL =…
bladekel
  • 13
  • 3
-1
votes
1 answer

TTGO ESP32 + GSM 800l AT Commands

Good day all I'm working on a project that takes sensor data and sends it to an online database using HTTP requests.Im ussing the TTGO esp32 sim 800 board, Everything works fine and all the data is stored in my online database the problem is that I…
Hansie
  • 7
  • 6
-1
votes
2 answers

Does sim800l has an url limit?

I want to send an information to web server with arduino via sim800l. AT+HTTPPARA=\"URL\",\"http://api.trackers.live/v3.0.0/TRCKR02B2AF359D19/40.35715122342342322432-36.077406243242342-1469134234/1212/021/16553" When I want to send long url to web…
-1
votes
1 answer

HC-05 Module AT command mode won't respond

I've been trying to connect two HC-05 bluetooth modules together as master and slave devices. I know that to do this i need to establish one as a slave device and one as a master using the AT command mode. I am using an arduino nano with each of the…
-1
votes
1 answer

How can I know my ssid and password for my esp8266? AT command does not work.How can I know for CWJAP username and password?

Here is serial monitor show... AT+CWJAP="AI_THINKER_F92AB1'',"" +CWJAP:1 FAIL AT+CWSAP="AI_THINKER_F92AB1","2534",1,4 ERROR What is the difference between CWJAP and CWSAP I think CWSAP is to create and change the id and password for ESP8266 wifi…