Adjust comments to comply with doxygen.

This commit is contained in:
Tom Petz 2020-09-08 16:12:02 -04:00
parent b504fa540e
commit f0a66b0dd3

6
DHT.h
View File

@ -48,9 +48,11 @@
#define AM2301 21 /**< AM2301 */ #define AM2301 21 /**< AM2301 */
#if (TARGET_NAME == ARDUINO_NANO33BLE) #if (TARGET_NAME == ARDUINO_NANO33BLE)
// As of 7 Sep 2020 the Arduino Nano 33 BLE boards do not have
// microsecondsToClockCycles defined.
#ifndef microsecondsToClockCycles #ifndef microsecondsToClockCycles
/*!
* As of 7 Sep 2020 the Arduino Nano 33 BLE boards do not have
* microsecondsToClockCycles defined.
*/
#define microsecondsToClockCycles(a) ((a) * (SystemCoreClock / 1000000L)) #define microsecondsToClockCycles(a) ((a) * (SystemCoreClock / 1000000L))
#endif #endif
#endif #endif