timer1 interrupt and the servo library

Hello good people! Just a quick question:
Is it possible to use a timer1 interrupt whilst also using the servo library?
Whenever i try to compile i get a "multiple definition of '__vector_11' " error...
Many thanks!

Try the servoTimer2 library.

...R

Thanks. So it it impossible to add more than one interrupt routine per timer?

gonadgranny:
Thanks. So it it impossible to add more than one interrupt routine per timer?

You can only have one interrupt routine per interrupt vector. I think the timers may have more than one vector.

Nick Gammon has a good tutorial on interrupts

...R