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 marthoma

  1. M

    [PIC] SIM908 Problem urgent solution needed!!!

    first of all ensure your sim was properly inserted and was acknowleged by the modem. secondly at+cmgr=1 is to read the first message that was received..if u havnt received any message than it will give an error....so to ensure send one message to that number and use this at command..it wont...
  2. M

    function for circle not continous on jhd12864e

    please ....im indeed in need of a solution here...i have tried with all kinds of circle algorithms...but none is gvg result.that means im making mistakes with the data types ryt? - - - Updated - - - void GLCD_Circle(unsigned int cx,unsigned int cy ,unsigned int radius) { unsigned int x, y...
  3. M

    [Moved] SIM 908 not responding to AT

    u r getting 0n,0e bcoz ur modem is not hvg a clear view of the sky.....if it gets dem within 30 sec max it starts gvg the correct rersponse......
  4. M

    [SOLVED] 16 *2 LCD contrast problem

    exactly....ur main power supply myt be the cause of problem....just verify that....for a character lcd i dont think a negative voltage is required....which model of lcd r u using..?
  5. M

    function for circle not continous on jhd12864e

    void GLCD_Circle(unsigned int cx,unsigned int cy ,unsigned int radius) { unsigned int x, y; int radiusError; x = radius; y = 0; radiusError = 1 - radius; while(x >= y) { set_pixel(cx+x, cy+y); set_pixel(cx+y, cy+x); set_pixel(cx-x, cy+y); set_pixel(cx-y, cy+x)...
  6. M

    lpc2148 Doubt regarding button configuration

    hey hiii.....in my project i have few external buttons which is used to trigger the message sending part,torch lights and few other things....so to which should i connect these buttons to cause interrupts when pressed? should it be connected to extint0 pin or to eintx??
  7. M

    [SOLVED] JHD12864E with lpc2148

    hii.....im working with this glcd...and i hd written a code by which pixels do appear on the screen but randomly...my power is proper and also the contrast volatge....im really confused with the initialisqation code...especially the delays that must b given and also the order of initialising the...
  8. M

    [SOLVED] uart interrupt for lpc2148

    im using character lcd 16*2 ....im now getting the interrupts well..though im not being able to extract the incoming message well to be displayed on the lcd.
  9. M

    [SOLVED] uart interrupt for lpc2148

    Sir i have completed the message sending part from sim908 to lpc 2148 using the polling method..Now i wanted to do the same with interrupts...i hd written the code for it which i have attached here buts its not working for me...i am not receiving any characters from sim908 now... please let me...
  10. M

    problem with Sim908 gps antenna

    could someone please help me here??if you are not clear with my question then please do ask....
  11. M

    problem with Sim908 gps antenna

    hiii....im working with sim908 gps and lpc2148.Im using the antenna prescribed by simcom.however my antenna is taking almost 14 minutes to collect the proper coordinates and time..cud sumone help me with which is the proper antenna to be used.to start the modem im giving the following AT...
  12. M

    [SOLVED] GSM SIM900 with lpc2148

    Hey hiii...I gt d probpem solved it too...it was just a dely probpem..thanku a lot to pl....im so relieved
  13. M

    [SOLVED] GSM SIM900 with lpc2148

    hiii....i hv finally solved the problem...message gets delivered now!!! :)...but the message received also contains the echo response and OK response along wid it....i.e.if the message set was "hello" den i also get at,at+cmgf=1,at+cmgs+....."hello
  14. M

    glcd 320x240 - how are pixel values stored in memory

    please help me seniors....tel me if you havent understood anythng of my problem...
  15. M

    [SOLVED] GSM SIM900 with lpc2148

    Okay i get it....i tried with 'a' delay 't' delay '0x0d'...still im not getting the response...could you please check my code and tel me how to solve the problem using polling...i dont want to use interrupts as of now..i wanted to try using polling method itself..i have attached my code...

Part and Inventory Search

Back
Top