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

Interrupt levels

In the getting started Document(GS51.pdf) under Interrupt Service Routines they have given 31 interrupt out of which only 2 are external interrupt(correct me if i am wrong).I am little confused regarding the other interrupts as in how to use them correctly.
How are these interrupts generated?
Are these interrupts given by the RTOS?(RTX51)?

can somebody please explain?

Parents
  • i8051 microcontroller consists of the following things:

    1. CPU
    2. Many different hardware modules, such as timers, ADC, comparators etc...
    3. Memory (RAM, programmable ROM)

    All of the interrupts generated by some hardware modules (and, in rare cases, by CPU itself). There is interrupt for timer,
    interrupt for two external pins, interrupt
    for ADC, interrupt for PCA, MAC...

    Read the datesheet for concrete MCU you are using.

Reply
  • i8051 microcontroller consists of the following things:

    1. CPU
    2. Many different hardware modules, such as timers, ADC, comparators etc...
    3. Memory (RAM, programmable ROM)

    All of the interrupts generated by some hardware modules (and, in rare cases, by CPU itself). There is interrupt for timer,
    interrupt for two external pins, interrupt
    for ADC, interrupt for PCA, MAC...

    Read the datesheet for concrete MCU you are using.

Children