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

Doubts regarding interfacing of gsm modem with 8051

Hello,
I could successfully interfaced GSM modem to PC. now i want to interface the same modem to AT89C51.
so can any one please suggest any site where i will get a sample of a program??
actually i referred some sites but i got all C programs and i want to do programming in assembly. because rest of my program is in assembly.so if available please suggest me some sites where i will find programs in "assembly language"

also,
In many circuits i saw use of LCD to display responses from modem.
but in my case i don't want to use LCD for this purpose.
my doubt is In any case we have to input those responses from GSM modem to microcontroller,otherwise communication won't be possible right? please correct me if i am wrong.

thank you :)

Parents
  • If you have already managed to implement the rest of your program in assembler, you don't need to download any assembler code for your GSM modem - just write the code.

    If all your other assembler code is also copied from somewhere, then you are in big troubles. Assembler modules don't magically fit together - you need to properly understand them to adjust them to fit.

    No - there are no needs to have any display to make use of a GSM module. You might need a way to supply some parameters - like PAP, CHAP or APN, if you want to make use of GPRS for data transfers. And if you instead use the GSM modem as a standard modem using GSM data, you need to supply a phone number to call. But these parameters can be hard-coded into your source code if this is just a prototype. It is only for products shipped to others that there needs to be a way to configure the device depending on what subscription the user has.

Reply
  • If you have already managed to implement the rest of your program in assembler, you don't need to download any assembler code for your GSM modem - just write the code.

    If all your other assembler code is also copied from somewhere, then you are in big troubles. Assembler modules don't magically fit together - you need to properly understand them to adjust them to fit.

    No - there are no needs to have any display to make use of a GSM module. You might need a way to supply some parameters - like PAP, CHAP or APN, if you want to make use of GPRS for data transfers. And if you instead use the GSM modem as a standard modem using GSM data, you need to supply a phone number to call. But these parameters can be hard-coded into your source code if this is just a prototype. It is only for products shipped to others that there needs to be a way to configure the device depending on what subscription the user has.

Children