• Cortex-M4 interrupts behaviour when same interrupt vector has multiple interrupts
    Hello, I am using STM32F407ZGT6 Cortex-M4 microcontroller. This controller has same interrupt vector for 5 external interrupts i.e., NVIC (EXTI9_5) for EXTI5, EXTI6, EXTI7, EXTI8 and EXTI9 interrupts...
  • Cortex-M4 interrupts behaviour when same interrupt vector has multiple interrupts
    Hello, I am using STM32F407ZGT6 Cortex-M4 microcontroller. This controller has same interrupt vector for 5 external interrupts i.e., NVIC (EXTI9_5) for EXTI5, EXTI6, EXTI7, EXTI8 and EXTI9 interrupts...
  • usage of interrupt for the same interrupt vertor number
    hi when we write codes like this: void f1(void) interrupt 1 { } void f2(void) interrupt 1 { } There is a link problem because the different functions use the same interrupt vector number. But...
  • usage of interrupt for the same interrupt vertor number
    hi when we write codes like this: void f1(void) interrupt 1 { } void f2(void) interrupt 1 { } There is a link problem because the different functions use the same interrupt vector number. But...
  • several Interrupts at the same time
    Hi, working with the LPC1758 controller, I've some problems with the interrupts. I use the interfaces I2C1 and SPI. Both interfaces are configurated using interrupts. After the initalization...