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 vietdung79

  1. V

    problem with TI flag in 89c5x microcontrollers

    There are some problem with your programme: 1) You didn't clear RI in your ISR 2) You didn't clear TI in your ISR 3) You use getkey() but I think you don't know how it work. You should rewrite this function 4) If you want to send the data and use the interrupt to receive data, you should change...
  2. V

    problem with TI flag in 89c5x microcontrollers

    So if you clear ES (don't use UART interrupt) could you send data?
  3. V

    RTC DS1307 Interfacing with MCU 89S52

    89s52 reset Try some Voice Recorder ICs such as ISD2560.
  4. V

    RTC DS1307 Interfacing with MCU 89S52

    ds1307 89s52 Try some Voice Recorder ICs such as ISD2560.
  5. V

    problem with TI flag in 89c5x microcontrollers

    Did you try this yet? I think you are wrong fundamentally in your theory. In sending data, TI is set by hardware and need clear by software for next time when finish sending data. So you have to clear TI in the init function. Regards.
  6. V

    How to check if DTMF IC is working properly?

    Re: DTMF CHECK Have you made a test board? If you have, it's so easy. Connect your phone line to the input of 8870. Call from other phone. Hook up the phone which connect with 8870. Then press some numbers from the caller phone. If your test board can receive what you press , it's working...
  7. V

    problem with TI flag in 89c5x microcontrollers

    Maybe a error in the interupt function. You have to add: if (TI) TI=0; in this. and I think you don't have to add the #ifndef in the init function if you don't need it. Regards.
  8. V

    How to check if DTMF IC is working properly?

    DTMF CHECK Which DTMF IC do you use? You can connect it with a MT8888 to check if it transmit/receive right or wrong.
  9. V

    problem with TI flag in 89c5x microcontrollers

    The printf() function use the putchar() function to interface with peripheral device. You can find the putchar() function in somewhere in the Keil folder (Maybe the Lib folder). Choose version which is suitable with you and copy it to your code. Now you have to set TI flag only one time in your...
  10. V

    problem with TI flag in 89c5x microcontrollers

    What compiler do you use? If you use Keil, you should re-write the putchar() function.
  11. V

    [SOLVED] Thermometer with AT89S2051

    msc 51 ds1621 projects For MSC-51 with DS18S20: http://www.sixca.com/micro/mcs51/ds1820_51/ds1820_c51.zip For MSC-51 with DS18B20 check the attachment:
  12. V

    Help me build an MP3 player with AT89C51, STA013 decoder chip and CS4334 DAC

    MP3 Player Hi How can I decode MP3 file without a DSP chip?
  13. V

    RTD interfacing program

    Check this sample from Microchip https://ww1.microchip.com/downloads/en/AppNotes/00687b.pdf
  14. V

    best way of counting pulses from opto sensor

    count led pulses opto vote for capture mode
  15. V

    codevision code for lcd

    codevision code should write in english. very impolite.

Part and Inventory Search

Back
Top