From aec8dd14abc9c9a4eba1b14e49af8b998922afd8 Mon Sep 17 00:00:00 2001 From: Nicolas Schodet Date: Thu, 14 Jun 2012 20:59:39 +0200 Subject: digital/avr/modules: change deprecated signal names --- digital/avr/modules/devices/servo/servo.avr.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'digital/avr/modules/devices/servo') diff --git a/digital/avr/modules/devices/servo/servo.avr.c b/digital/avr/modules/devices/servo/servo.avr.c index fc5adc78..b69fde6e 100644 --- a/digital/avr/modules/devices/servo/servo.avr.c +++ b/digital/avr/modules/devices/servo/servo.avr.c @@ -74,7 +74,7 @@ volatile uint8_t servo_position_[SERVO_NUMBER]; /** * Overflow of timer/counter 2 handler. */ -SIGNAL (SIG_OVERFLOW2); +ISR (TIMER2_OVF_vect); /** @} */ @@ -127,7 +127,7 @@ servo_get_position (uint8_t servo) } /* Overflow of timer/counter 2 handler. */ -SIGNAL (SIG_OVERFLOW2) +ISR (TIMER2_OVF_vect) { /* Overflow count (used when we wait in the lower state). -1 is used for the first count where we wait less than a complete -- cgit v1.2.3