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 Hareesh Kumar

  1. H

    Flash magic software usage

    Which programmer that can use for programming P89C52NBPN IC?
  2. H

    Flash magic software usage

    But whether flash magic need any USB-UART converter
  3. H

    Flash magic software usage

    .I am using these programmer and usb connector for programing.I am directly plug the the prgrammer using these connecter.But 1.The PC cant detect USB.Whether i need any other connecter/converter for programming??
  4. H

    Flash magic software usage

    Yes.I have EZ downloader software.And also i have flash magic software.But My doubt is whether i can use EZ downloader software with the 8051 programmer??Because i am conecting through USB-with pc and programer.But it is not working.The ez downloader software cant identify the comport.
  5. H

    Flash magic software usage

    Yes.I have EZ downloader software.And also i have flash magic software.But My doubt is whether i can use EZ downloader software with the 8051 programmer??Because i am conecting through USB-with pc and programer.But it is not working.The ez downloader software cant identify the comport.
  6. H

    Flash magic software usage

    Can i use EZ downloader softawre with 8051 programmer
  7. H

    Flash magic software usage

    I am using flash magic software for writing program to at89c51.But it does not work.I am connecting through rs232-usb converter for connect programmer and ic.Com port is 3,baud rate is 9600,osillator frequency is 11.0592 MHZ.But when do the fifth step,they show a message that try to raise or...
  8. H

    LED blinking and Displaying on LCD project in atmel 89c51

    #include <reg52.h> sbit mybit=p1^3; void main(void) { char a; TMOD=0x20; //use Timer 1, mode 2 TH1=0xFD; //9600 baud rate SCON=0x50; TR1=1; //start timer while(1) { while (!RI); a='1'; SBUF = a; RI=0; SBUF = a; while...
  9. H

    LED blinking and Displaying on LCD project in atmel 89c51

    Actually i want to send the value 1 to sbuf when pres 1 in keyborad and at that time p1.1 pin get on .Then i will press 2 that time p1.1 should off.This is the basic step i want to do.
  10. H

    LED blinking and Displaying on LCD project in atmel 89c51

    #include <reg52.h> void main(void) { TMOD=0x20; //use Timer 1, mode 2 TH1=0xFD; //9600 baud rate SCON=0x50; TR1=1; //start timer while(1) { while (!RI); a= SBUF RI=0; SBUF = a; while (!TI)...
  11. H

    LED blinking and Displaying on LCD project in atmel 89c51

    how can i send the 1 or 2 from keyboard to SBUF register?
  12. H

    LED blinking and Displaying on LCD project in atmel 89c51

    when press 1 in keyboard the led connected with p1.1 pin should on.Then i press 2 in keyboard,first led should off and second led(p1.2)should on..These procedure should continoue for the 4th pin.and everytime led on,it should print on hyperterminal and LCD ---------- Post added at 12:04...
  13. H

    LED blinking and Displaying on LCD project in atmel 89c51

    using keyboard.I am using Keil and Ezd4 for this. ---------- Post added at 11:55 ---------- Previous post was at 11:43 ---------- My requirement is when i press 1/2/3/4 keys in the keyboard,the 4 LEDs connected to port1.1,1.2,1.3,1.4 should on and print the status in LCD also for off...
  14. H

    LED blinking and Displaying on LCD project in atmel 89c51

    Hi, I am new in the embodied world.I am going to develop a simple device which has 4 inputs 1 2 3 4.LED has to be blink while i give the input and also display in LCD which input i give like 1/2/3/4...I kindly request everybody to guide me..Any sort of help is appreciated. Thanks and...
  15. H

    8051 serial port enable

    how can i enable timer 2 for serial communication?what the value of registers in that situation?

Part and Inventory Search

Back
Top