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.

Recent content by errakeshpillai

  1. errakeshpillai

    Communication between 2 GSM 900A modems

    You can communicate using GPRS in the GSM module
  2. errakeshpillai

    [Makefile] How can we read some text file in Makefile?

    or else you can try scripting.
  3. errakeshpillai

    how can i send sms with gsm?

    Just go through the AT commands manual. There you can easily find the commands for all the tasks that are done by the GSM modem. You can connect it to the PC and use Hyperterminal(Win XP)/ Teraterm (Win 7). The command for sending SMS is AT+CMGS
  4. errakeshpillai

    [SOLVED] doubt in delay function subroutine

    For calculating this you can just observe the dis assembly in any compiler and based on the instruction you can find out that the delay will be approximately 250ms.
  5. errakeshpillai

    [51] Interfacing of EEPROM ,RTC, 4-BIT Lcd With Microcontroller

    Interfacing a 4-bit mode LCD is pretty simple. You can refer this Link And the EEPROM and RTC can be interface to the controller by using the I2C protocol.
  6. errakeshpillai

    where to use malloc and calloc in controller programming

    Re: where to use malloc() and calloc in controller programming malloc() and calloc() are the function which can be ued to allocate memory during run-time. Mainly both the functions do the same job i.e. reserving the requested memory bytes and returning a pointer to that reserved memory with...
  7. errakeshpillai

    sms based e notice board

    Controller is selected on the basis of the features you need. But if you just want to have a basic GSM module interfaced with not so sophesticated facilities then even an 8051 is enough.
  8. errakeshpillai

    please explain the below c program

    Replace fgets with scanf. And add a NULL after every word.
  9. errakeshpillai

    Linux 2.6.25 /dev entry problem

    ok... I'll check that out..
  10. errakeshpillai

    Linux 2.6.25 /dev entry problem

    What kind of error with insmod. So how to solve that..? Also if I use printk messages then the log messages are delivered correctly. "Device node created success" etc.....
  11. errakeshpillai

    Linux 2.6.25 /dev entry problem

    Yes, using mknod I'm able to create the dev node.
  12. errakeshpillai

    please explain the below c program

    Why use fgets for 1st time and scanf for the 2nd time..? To clear the Input buffer there are functions like fflush or __fpurge. Try those. while(*a) { if(*a==' ') { a++; b[i++][j]='\0'; j=0; continue; } b[i][j++]=*a; a++; } b[i][j]='\0'; Secondly I guess you are just separating all the words...
  13. errakeshpillai

    please explain the below c program

    Its the problem of flushing out the STDIN buffer. STDIN is a line buffer i.e. it will flush its data only when a newline is encountered. First when you scan the string, it will wait for user input till the user presses newline(Enter key), hence the STDIN will flush out data and that will be...
  14. errakeshpillai

    Linux 2.6.25 /dev entry problem

    Thanx for answering.. I have used the same method and tried a lot of "googling" about this, but in vain. I have to use mknod, don't know why..? I have 2 drivers, one which will successfully creating the dev entry, but my driver with the similar flow of coding and functions is not creating the...
  15. errakeshpillai

    a simple question about the output impedance and the input impedance

    High input impedance is better, so that it will not load the circuit to which it is connected. Low output impedance is preferred so that the circuit can drive more circuits.

Part and Inventory Search

Back
Top