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

interfacing intel 8051with a gm862 gprs modem and a ADC0808

i need to convert a analog signal using adc0808 and then send the data to the serial out of the 8051 in order to transmit it to the gprs modem. i tink i hav to use ATcommands. Can anyone guide me on how to do this? I don't kno much about the uC so any info u may have please share

Parents
  • "i tink i hav to use ATcommands."

    Yes, you do.

    But note that GPRS is a Packet-based link; so, once the link is established, you will then need to use a suitable packet protocol - most likely IP.
    See the modem Manual for details.

    "Can anyone guide me on how to do this? I don't kno much about the uC"

    Dealing with AT Commands has nothing specifically to do with the uC - AT Commands work exactly the same whether you use a uC, or enter them manually on a terminal, or use some PC software, etc, etc,...

    So you first step is to learn how to do serial comms on the uC - there are plenty of examples on this site and elsewhere.
    See also: www.8052.com/.../120308
    in fact, http://www.8052.com/faqs has a whole section on 8051 Serial Comms.

    See also: www.8052.com/.../161553

Reply
  • "i tink i hav to use ATcommands."

    Yes, you do.

    But note that GPRS is a Packet-based link; so, once the link is established, you will then need to use a suitable packet protocol - most likely IP.
    See the modem Manual for details.

    "Can anyone guide me on how to do this? I don't kno much about the uC"

    Dealing with AT Commands has nothing specifically to do with the uC - AT Commands work exactly the same whether you use a uC, or enter them manually on a terminal, or use some PC software, etc, etc,...

    So you first step is to learn how to do serial comms on the uC - there are plenty of examples on this site and elsewhere.
    See also: www.8052.com/.../120308
    in fact, http://www.8052.com/faqs has a whole section on 8051 Serial Comms.

    See also: www.8052.com/.../161553

Children