vote up 0 vote down star

Hi All,

I want to set up communication between GSM/GPRS modem and a remote server or PC. How to do that? Do we need some application on PC which will communicate to the GSM modem. I want 2 way commuinication. I want to interface GSM/GPRS modem with some microprocessor which has some LCD display. Can anybody help me in this.

Thanks, Manoj

flag
Can you be a bit more specific about that "some microprocessor with some display" device? Your options will probably be limited by what exactly that external device is capable of supporting. – fvu Oct 20 at 10:30
Thanks for the reply. Actually I have a microcontroller board which has keypad and an LCD attached to it. So what I want to do, I want to interface GSM/GPRS modem to this board and want to communicate to the remote server that is a Desktop computer. So I want to know how to do that. What I think, I have to make a GUI application on the remote server that will communicate to GSM/GPRS modem. I have no experience in this so I want to know this thing. I want 2-way communication. – Manoj Goel Oct 21 at 3:16

1 Answer

vote up 1 vote down

Your question is pretty broad and covers a range of technologies.

Communicating with a GSM Modem

A GSM modem will connect to a computer using a serial or USB port. You can open the serial port and talk with it. Since you didn't specify platform, I can't suggest how to do that. In c#, you would use the SerialPort class. You use the standard AT* command set for various operations with it.

Communicating with a GPRS modem

A GPRS modem connected to external device will normally be on internet. If you know the IP address of target device, you can use TCP/IP sockets for communicating with it.

I want to interface GSM/GPRS modem with some microprocessor

Not sure what exactly you mean by that but if you want to program a processor for GPRS/GSM communication, you will need to understand that processor and write or buy a TCP/IP stack.

link|flag
what kind of application i need to develop on the remote server side, so that GPRS modem will be able to communicate to that application? – Manoj Goel Oct 21 at 10:13
means it should be a GUI application obviously.. which language we can use to develop that? and using gprs how much speed we can attain? – Manoj Goel Oct 21 at 10:16

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.