For lack of a better title; i have a question concerning using timers with ISRs. For example in my program I'm using the WDT interrupt vector to modify a register for use with my LCD code.
Are you only allowed to use one ISR per timer? For example, if I am using this WDT isr for one of my LCD subroutines...can I not "point" the WDT interrupt to a different ISR for use in a different part of the program?
In my case I want to use it for the LCD subroutine and for a button debouncing interrupt subroutine. Is this possible or is another timer source(timer A or timer B) necessary?
Thanks,
ps - I tried having 2 separate ISRs for the WDT and the compiler didn't like that