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 mandar_mahajan

  1. M

    confused about how interrupt works?

    Is there any thing wrong in reading the datasheets of the controllers or basic concepts of Embedded Prog. before posting??????
  2. M

    Multiple files structure for C in Microcontroller

    U can include another .c file in ur main .c file. but u have to take care about the variables defined in ur .c files(have to define as extern). Ex. ur main file is main.c & the other file is lcd.c. then ur syntax will be #include <main.h> #include "lcd.h"
  3. M

    Wireless comms using a 433TX/RX module and AtMega8

    Dear gregmcc , What data is there in ur 1 byte.? Is it some information means any adc/dac or any other perriferal data/output or just ON-OFF Pulses.?? The good practice is to Transmit the data contineously, & on receiver side store it in some buffer & take whenever u want. transmit...
  4. M

    Wireless comms using a 433TX/RX module and AtMega8

    visit to Sunrom Technologies, Your Source for Development. It provides good support.
  5. M

    4 wire resistive touch screen

    The four wire Touch pad firstly works on SPI Protocol with the driver IC(if u r using). U can read the data from that IC say ADS7843 through spi engine of by bit bang method & can simulate the results either on ur display of on hiper terminal. Mandar
  6. M

    p89LPC936 programming through universal programming,

    Hello Dani, It seems u r missing some basics. Any microcontroller code runs in a infinite while loop. Plz try the below code. void delay (unsigned long cnt); void main() { unsigned char i; P1M1 |= 0x20; P1M2 &= 0xDF; P2M1 = 0x00; // Pushpull P2M2 = 0xff; while(1)...
  7. M

    p89LPC936 programming through universal programming,

    You r using Port 2, right??? your port 2 pins must be in PUSH PULL MODE OR QUASI BI DIRECTIONAL MODE. What's the voltage u r getting on ur portpins when u want to glow the LED'S. There might be a problem in ur hardware also. I use Flash Magic for loading the program in my LPC. Don't...
  8. M

    p89LPC936 programming through universal programming,

    Hi Dani, I do not understand what exactly u r trying to say. But looking at ur code, ur port pin is not configured properly (P2M1 = 0;). It should be in the following manner(by the combination of M1 & M2). Also refer the datasheet for the same. its quite...
  9. M

    320 x 240 Monochrome display Inilization problem.

    Hi Bobi, The problem is solved. Thanks for the reply. Actually in all the write command & write data instructions, the LCD BUSY STATUS must be checked. OR one may add a random delay. In my case, i checked the busy status of LCD as below: while(1) { if(!(GLCD_ReadStatus() &...
  10. M

    320 x 240 Monochrome display Inilization problem.

    can Somebody help me in this issue.
  11. M

    320 x 240 Monochrome display Inilization problem.

    Hi Everybody, I intend to use a 320 x 240 Monochrome display. the controller on the board is RAIO RA8835. I am using the attached file for initializing the same. If u look in my main.c file, I just call a function to display a text msg. But I am not getting any results an display. Also during...
  12. M

    [SOLVED] height using ultrasonic sensors

    How to focus the beam, my asthetic design is in such a way that I can't use a cone for the sensors. & about increasing the gain, if i increase it above 1000, it is creating problems.
  13. M

    [SOLVED] height using ultrasonic sensors

    My gain is of 1000. which is quite high. All the observations/ debugging are done on oscilloscope only. The returned echo from hard object is clearly seen on scope from long distance. But when it comes to head, echo gets attenuated after say 40-45 cms from sensor.
  14. M

    [SOLVED] height using ultrasonic sensors

    hi, kenith Attaching the schematic. Is there any way to solve my problem.

Part and Inventory Search

Back
Top