We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a7edf4d commit 5ab6edbCopy full SHA for 5ab6edb
cores/arduino/wiring.c
@@ -312,17 +312,17 @@ void init()
312
sbi(TCCR2, CS22);
313
#elif defined(TCCR2B) && defined(CS22)
314
sbi(TCCR2B, CS22);
315
-#else
316
- #warning Timer 2 not finished (may not be present on this CPU)
+//#else
+ // Timer 2 not finished (may not be present on this CPU)
317
#endif
318
319
// configure timer 2 for phase correct pwm (8-bit)
320
#if defined(TCCR2) && defined(WGM20)
321
sbi(TCCR2, WGM20);
322
#elif defined(TCCR2A) && defined(WGM20)
323
sbi(TCCR2A, WGM20);
324
325
326
327
328
#if defined(TCCR3B) && defined(CS31) && defined(WGM30)
0 commit comments