I am trying to get an Irq from watch dog timeout but unable to do so. Could be please point out my error. Below is the code snippet. void watchdogtest() { /*Enable watch-dog*/ enable_irq (INT_SWT_0 - MAC57D54H_FIRST_USER_IRQ); route_interrupt (INT_SWT_0 - MAC57D54H_FIRS...
Generally speaking it is better to make an interrupt handler as small as possible and to make the processing in the main context. (At the beginning of this project we had other constraints that are no more valid). Currently the SX127x drivers do handle a lot inside the interrupt handler ...
I am trying to get an Irq from watch dog timeout but unable to do so. Could be please point out my error. Below is the code snippet. void watchdogtest() { /*Enable watch-dog*/ enable_irq (INT_SWT_0 - MAC57D54H_FIRST_USER_IRQ); route_interrupt (INT_SWT_0 - MAC57D54H...