Skip to content

Commit fa22bc6

Browse files
committed
Fix lint errors
1 parent a1f0c1c commit fa22bc6

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

DHT.h

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,10 +47,11 @@
4747
#define DHT21 21 /**< DHT TYPE 21 */
4848
#define AM2301 21 /**< AM2301 */
4949

50-
#if (TARGET_NAME==ARDUINO_NANO33BLE)
51-
// As of 7 Sep 2020 the Arduino Nano 33 BLE boards do not have microsecondsToClockCycles defined.
50+
#if (TARGET_NAME == ARDUINO_NANO33BLE)
51+
// As of 7 Sep 2020 the Arduino Nano 33 BLE boards do not have
52+
// microsecondsToClockCycles defined.
5253
#ifndef microsecondsToClockCycles
53-
#define microsecondsToClockCycles(a) ( (a) * (SystemCoreClock / 1000000L) )
54+
#define microsecondsToClockCycles(a) ((a) * (SystemCoreClock / 1000000L))
5455
#endif
5556
#endif
5657

0 commit comments

Comments
 (0)