diff options
author | Nico <NicoHood@users.noreply.github.com> | 2015-09-25 09:00:44 +0200 |
---|---|---|
committer | Cristian Maglie <c.maglie@arduino.cc> | 2015-09-28 16:30:39 +0200 |
commit | a7edf4d66f66d42ebb7e166762ac7c11cb299a3f (patch) | |
tree | 57bd915ffeb43704a85199aba9728403dd62e35f /cores/arduino/Tone.cpp | |
parent | 1be98bd7d50d8fa10b5a69987985149059bde790 (diff) |
Remove Compiler Warning in Tone.cpp
Diffstat (limited to 'cores/arduino/Tone.cpp')
-rw-r--r-- | cores/arduino/Tone.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cores/arduino/Tone.cpp b/cores/arduino/Tone.cpp index 4e058cd..1bfb3e3 100644 --- a/cores/arduino/Tone.cpp +++ b/cores/arduino/Tone.cpp @@ -209,7 +209,7 @@ static int8_t toneBegin(uint8_t _pin) #if defined(WGM42) bitWrite(TCCR4B, WGM42, 1); #elif defined(CS43) - #warning this may not be correct + // TODO this may not be correct // atmega32u4 bitWrite(TCCR4B, CS43, 1); #endif |