This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

How to program serial interrupts in 8051C for p89c669

Dear Friends...
I am Ramesh, working on project on p89c669 MC. I am facing problem in programming serial interrupts in 8051C for p89c669. it has dual UARTs. what is interrupt no.s used by 8051C for the p89c669. (Interrupt vector table ) Pls suggest some sample pgms on it...

Thanking you...

Ramesh.

Parents
  • what is interrupt no.s
    beware, some datasheets supply interrupt numbers that do not match Keil. They tend to number them sequentially and if there is gaps in the vector table you will be off.

    the only safe way to get an interrupt number is:
    ([interrupt vector address] - 3)/8

    burnt once

    Erik

Reply
  • what is interrupt no.s
    beware, some datasheets supply interrupt numbers that do not match Keil. They tend to number them sequentially and if there is gaps in the vector table you will be off.

    the only safe way to get an interrupt number is:
    ([interrupt vector address] - 3)/8

    burnt once

    Erik

Children