aboutsummaryrefslogtreecommitdiff
path: root/libraries/Servo/Servo.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'libraries/Servo/Servo.cpp')
-rwxr-xr-xlibraries/Servo/Servo.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/libraries/Servo/Servo.cpp b/libraries/Servo/Servo.cpp
index 4d04145..248a215 100755
--- a/libraries/Servo/Servo.cpp
+++ b/libraries/Servo/Servo.cpp
@@ -69,12 +69,12 @@ uint8_t Servo::attach(int pinArg)
if (pin == 9) {
attached9 = 1;
- TCCR1A = TCCR1A & ~_BV(COM1A0) | _BV(COM1A1);
+ TCCR1A = (TCCR1A & ~_BV(COM1A0)) | _BV(COM1A1);
}
if (pin == 10) {
attached10 = 1;
- TCCR1A = TCCR1A & ~_BV(COM1B0) | _BV(COM1B1);
+ TCCR1A = (TCCR1A & ~_BV(COM1B0)) | _BV(COM1B1);
}
return 1;
}