2022-01-20 04:26 AM
Is there a way to create user defined IRQ handler type that could be called from NVIC ISPR ? I would like to interrupt execution if some particular software condition is fulfilled..
2022-01-20 06:09 AM
Like an interrupt to be called when “x == 42�? ? No, this is not possible in hardware. You can do some things like this using the debugger and watch points/breakpoints.
2022-01-20 07:57 AM
Yes, something like that is what I wanted to do. Ok, I will look into some other way of doing this. loopback on the EXTI is what comes into my mind :)