Is it possible to use "attachinterrupt" to monitor for both the rising and falling of a signal on 1 digital input pin, using seperate isr's for each condition? I have been trying to do this to monitor the run time of a burner but it only seems to be responding to 1 of the interrupt requests and not both.
I don't believe you can do it like that. Just use a CHANGE interrupt and within the ISR detect whether the new state of the pin is HIGH (it was rising) or LOW (it was falling).
It may be helpful to use the digitalWriteFast library (which also has a ...Read... function) for increased performance.