User Activity

The execution of an interrupt handler can be preempted by an exception having higher priority.How many interrupt by an exception having higher priority can be executed?In the link below, two interrupts are generated. Is this number infinite?
​We make below code.The variable a is written from both main function and interrupt function.​When accessing variable a with the main function to realize exclusive control, interrupt disable and enable (__disable_irq(), __enable_irq()) are used.​How ...