• How to get Interrupt number (IRQ number) during kernel panic in interrupt context?
    I have a kernel panic in the Interrupt context. I have an use case to know the interrupt service routine number (IRQ number) during kernel panic. I had look on GIC registers from register spec, I could...
  • How to get Interrupt number (IRQ number) during kernel panic in interrupt context?
    I have a kernel panic in the Interrupt context. I have an use case to know the interrupt service routine number (IRQ number) during kernel panic. I had look on GIC registers from register spec, I could...
  • Interrupt number for an interrupt subroutine
    Hi, I'm trying to use the interrupt PWMINT for a PWM program with the 167. The problem is I cannot find the correct interrupt number for the function: void Interrupt_func (void) interrupt PWMINT...
  • Interrupt number for an interrupt subroutine
    Hi, I'm trying to use the interrupt PWMINT for a PWM program with the 167. The problem is I cannot find the correct interrupt number for the function: void Interrupt_func (void) interrupt PWMINT...
  • 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...