Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

What is the hex equivalent value for ctlr+Z in GSM AT command

Status
Not open for further replies.

prakashvenugopal

Advanced Member level 1
Joined
Jun 1, 2011
Messages
473
Helped
15
Reputation
30
Reaction score
15
Trophy points
1,298
Activity points
4,973
Hi,

Can anyone Please let me know. the Hex value for Ctlr+Z in GSM AT commands?


Thanks,
V. Prakash
 

Hi,

Can anyone Please let me know. the Hex value for Ctlr+Z in GSM AT commands?


Thanks,
V. Prakash

Hai, I am using this an array to do that.
char controlZ[2] = {0x1A,0x00};
 
Hi,

I had tried with hyperterminal to make a call ATD9994238372; and press enter, it is working. Now i have to sent this command from my microcontroller to gsm modem. what is the hex value for "enter" key? Please do let me know.

Thanks,
V.Prakash
 

@prakashvenugopal: It is very likely that two more characters will be needed.
One is the "ESC" character and the other one is the "LF" (line feed) character.

LF = 0x0A
ESC = 0x1B
 
HI,


What is the AT command to set these parameters:
1) baud rate -1200 bps
2) data bits -8 bit
3) Parity - None
4) stop bit - 1
5) Flow control - None

Please let me know.

Thanks,
V. Prakash
 

Hex value of CTRL+Z is 0x1A. If you are writing your code is C, then use this, "unsigned char ctrlz=0x1A;" or if it assembly, then use this "MOV SBUF,0x1A"
 

HI,


What is the AT command to set these parameters:
1) baud rate -1200 bps
2) data bits -8 bit
3) Parity - None
4) stop bit - 1
5) Flow control - None

Please let me know.

Thanks,
V. Prakash
It would help if you mentioned which modem you are using. I don't know if it is the same command for all modems.
 

HI,

What is the AT command to set these parameters:
1) baud rate -1200 bps
2) data bits -8 bit
3) Parity - None
4) stop bit - 1
5) Flow control - None ?

I am able to access ctrl+z using 0x1A. No issues in it. I have to need the AT command to set the above characters.

Thanks,
V. Prakash
 

Status
Not open for further replies.

Similar threads

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top