Hello to everyone.
My question is: Does anyone know the minimum time it takes for the interrupt handler (DT_Ints) to kick in and start processing the interrupt? I currently have one interrupt on change actively waiting for a port pin to change. I want to know if anyone knows how long it takes for the interrupt handler to react/respond to the port pin change. The particular device I'm using is the 18F67K40. Its data sheet states the a minimum of 50nS after changing states, is needed at a logic 1 or 0 in order for the IOC to be valid. Does anyone know how long after that, it takes for DT_ints to start processing the interrupt.
My current setup:
Using high priority interrups.
PortG.5 is set to generate an interrupt on a positive going edge.
I set PortG.3 to logic 1 to indicate that I have entered the interrupt.
I use this setup to time the interrupt from when it's being generated and when I respond to it.
The current time is 9.5 microSeconds. It may not be a long time but i need it to be faster than that.
All feedback is appreciated.
My question is: Does anyone know the minimum time it takes for the interrupt handler (DT_Ints) to kick in and start processing the interrupt? I currently have one interrupt on change actively waiting for a port pin to change. I want to know if anyone knows how long it takes for the interrupt handler to react/respond to the port pin change. The particular device I'm using is the 18F67K40. Its data sheet states the a minimum of 50nS after changing states, is needed at a logic 1 or 0 in order for the IOC to be valid. Does anyone know how long after that, it takes for DT_ints to start processing the interrupt.
My current setup:
Using high priority interrups.
PortG.5 is set to generate an interrupt on a positive going edge.
I set PortG.3 to logic 1 to indicate that I have entered the interrupt.
I use this setup to time the interrupt from when it's being generated and when I respond to it.
The current time is 9.5 microSeconds. It may not be a long time but i need it to be faster than that.
All feedback is appreciated.