diff options
author | Nico <NicoHood@users.noreply.github.com> | 2015-09-25 14:08:38 +0200 |
---|---|---|
committer | Cristian Maglie <c.maglie@arduino.cc> | 2015-09-28 16:30:40 +0200 |
commit | b53611a0d1b539b34f791febdd8a22bd066df3e7 (patch) | |
tree | 74001445427401f865a910020a5b6dce8ec9bcbb /cores/arduino/wiring.c | |
parent | 5ab6edb114eb8b0fb51939669aae2980309602fd (diff) |
Removed not needed Timer warning
Timer is declared above, so nothing is missing here.
Diffstat (limited to 'cores/arduino/wiring.c')
-rw-r--r-- | cores/arduino/wiring.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/cores/arduino/wiring.c b/cores/arduino/wiring.c index 68fb0ca..1c3e5a5 100644 --- a/cores/arduino/wiring.c +++ b/cores/arduino/wiring.c @@ -303,8 +303,6 @@ void init() // put timer 1 in 8-bit phase correct pwm mode #if defined(TCCR1A) && defined(WGM10) sbi(TCCR1A, WGM10); -#elif defined(TCCR1) - #warning this needs to be finished #endif // set timer 2 prescale factor to 64 |