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

8031/8032: more interrupts possible?

Hi,

I'm doing a project with a 80C32 processor. I'm lacking, however, interrupts.
Is there a (tricky) way to have more than the standard provided interrupts at your disposal?

--Geert

Parents
  • I think you can have two or more interupts on the same pin..
    Inside the interrupt routine you have to check which source caused that interrupt (for example: you can have the external interrupt sources place a certain word on one of the ports or simply make one of the port pins go low)

    but of course you have to be sure that no 2 interrupts on the same pin can occcur simultaneously..

    Hope I was helpful..

Reply
  • I think you can have two or more interupts on the same pin..
    Inside the interrupt routine you have to check which source caused that interrupt (for example: you can have the external interrupt sources place a certain word on one of the ports or simply make one of the port pins go low)

    but of course you have to be sure that no 2 interrupts on the same pin can occcur simultaneously..

    Hope I was helpful..

Children