This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

Using Microcontroller to control a GSM modem

Hi all,

I'm using a eZ430-F2103 microcontroller to control a GSM modem. My problem is I don't know what is supposed to happen when you send an ASCII character to GSM modem from the microcontroller. Will the GSM modem respond me back with the same character? Is it just simply sending ASCII characters or there is more to it?

Thank you

Rui

Parents
  • The modem (any modem, for that matter) neither knows nor cares what is connected to it - the interface works as defined in the modem Manual irrespective of whether you connect it to a PC, an ARM, an 8051, a dumb terminal, or anything else!

    See http://www.keil.com/forum/docs/thread9113.asp

    So the first thing to do is to read the modem's Manual

    Armed with that knowledge, you can then experiment by sending commands and observing the responses using Hypoterminal, or a similar terminal program, on a PC or whatever

    Hint: whether or not the modem returns characters as you type them is known as Echo, and is controlled by the ATE command.

    http://www.keil.com/forum/docs/thread9178.asp

Reply
  • The modem (any modem, for that matter) neither knows nor cares what is connected to it - the interface works as defined in the modem Manual irrespective of whether you connect it to a PC, an ARM, an 8051, a dumb terminal, or anything else!

    See http://www.keil.com/forum/docs/thread9113.asp

    So the first thing to do is to read the modem's Manual

    Armed with that knowledge, you can then experiment by sending commands and observing the responses using Hypoterminal, or a similar terminal program, on a PC or whatever

    Hint: whether or not the modem returns characters as you type them is known as Echo, and is controlled by the ATE command.

    http://www.keil.com/forum/docs/thread9178.asp

Children