From 7f31cdab8fa6ecadf4cab4236443eae1441149c6 Mon Sep 17 00:00:00 2001 From: jgromes Date: Fri, 10 Jul 2020 08:20:45 +0200 Subject: [PATCH] Test doxygen TODOs --- src/Module.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Module.cpp b/src/Module.cpp index 6ce55043..774b409b 100644 --- a/src/Module.cpp +++ b/src/Module.cpp @@ -336,7 +336,7 @@ RADIOLIB_PIN_STATUS Module::digitalRead(RADIOLIB_PIN_TYPE pin) { } void Module::tone(RADIOLIB_PIN_TYPE pin, uint16_t value) { - // TODO add tone support for platforms without tone() + /// \todo Add tone support for platforms without tone() #ifndef RADIOLIB_TONE_UNSUPPORTED if(pin != RADIOLIB_NC) { ::tone(pin, value); @@ -345,7 +345,7 @@ void Module::tone(RADIOLIB_PIN_TYPE pin, uint16_t value) { } void Module::noTone(RADIOLIB_PIN_TYPE pin) { - // TODO add tone support for platforms without noTone() + /// \todo Add tone support for platforms without tone() #ifndef RADIOLIB_TONE_UNSUPPORTED if(pin != RADIOLIB_NC) { ::noTone(pin);