AmebaServo stops GTimer interrupts

Hello,

If i have this code.

GTimer.begin(0, (1 * 1000 * 100), tick, false, 0);

the timer tick(…) function is called every 100 ms ok.

However if i then add this code

AmebaServo myservo;
myservo.attach(SERVO_PIN);

Then the timer tick stops!!!

It seems the AmebaServo function is disabling the GTimer interrupts.

Why is that happening?

Thanks

Sorry it was my mistake, please ignore this.