File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
hardware/arduino/avr/cores/arduino Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -21,10 +21,12 @@ ARDUINO 1.6.6
21
21
* Introducing arduino-builder, a command line tool that properly calls gcc. Fixes lots of issues about buggy preprocessing.
22
22
23
23
[libraries]
24
-
25
24
* Bridge: YunClient.connected() returns true if there are bytes available for read. Thanks @RobAtticus
26
25
* Bridge: YunClient.stop() now empties all buffers. Thanks @RobAtticus
27
26
27
+ [core]
28
+ AVR: fixed wrong turnOffPWM() for TIMER0B. Thanks @gonzoveliki
29
+
28
30
ARDUINO 1.6.5-r5 - 2015.08.28
29
31
30
32
[ide]
Original file line number Diff line number Diff line change @@ -94,7 +94,7 @@ static void turnOffPWM(uint8_t timer)
94
94
case TIMER0A : cbi (TCCR0A , COM0A1 ); break ;
95
95
#endif
96
96
97
- #if defined(TIMER0B ) && defined(COM0B1 )
97
+ #if defined(TCCR0A ) && defined(COM0B1 )
98
98
case TIMER0B : cbi (TCCR0A , COM0B1 ); break ;
99
99
#endif
100
100
#if defined(TCCR2A ) && defined(COM2A1 )
You can’t perform that action at this time.
0 commit comments