mirror of
https://github.com/arduino/Arduino.git
synced 2024-11-29 10:24:12 +01:00
Fixing PWM on pins 9 & 10 on the Uno.
Resetting TCCR1B to 0 after it's configured by optiboot. http://code.google.com/p/arduino/issues/detail?id=364
This commit is contained in:
parent
750c860a0d
commit
b3ba5d4f97
@ -189,6 +189,8 @@ void init()
|
|||||||
// this is better for motors as it ensures an even waveform
|
// this is better for motors as it ensures an even waveform
|
||||||
// note, however, that fast pwm mode can achieve a frequency of up
|
// note, however, that fast pwm mode can achieve a frequency of up
|
||||||
// 8 MHz (with a 16 MHz clock) at 50% duty cycle
|
// 8 MHz (with a 16 MHz clock) at 50% duty cycle
|
||||||
|
|
||||||
|
TCCR1B = 0;
|
||||||
|
|
||||||
// set timer 1 prescale factor to 64
|
// set timer 1 prescale factor to 64
|
||||||
sbi(TCCR1B, CS11);
|
sbi(TCCR1B, CS11);
|
||||||
|
Loading…
Reference in New Issue
Block a user