Skip to content

Commit 88b294a

Browse files
committed
change no-op defines from '1' to ''.
1 parent 6b8f2bd commit 88b294a

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

boarddefs.h

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -560,12 +560,12 @@
560560
// way to do this on ESP32 is using the RMT built in driver like in this incomplete library below
561561
// https://github.com/ExploreEmbedded/ESP32_RMT
562562
#elif defined(IR_TIMER_USE_ESP32)
563-
#define TIMER_RESET 1
564-
#define TIMER_ENABLE_PWM 1
563+
#define TIMER_RESET
564+
#define TIMER_ENABLE_PWM
565565
#define TIMER_DISABLE_PWM Serial.println("IRsend not implemented for ESP32 yet");
566-
#define TIMER_ENABLE_INTR 1
567-
#define TIMER_DISABLE_INTR 1
568-
#define TIMER_INTR_NAME 1
566+
#define TIMER_ENABLE_INTR
567+
#define TIMER_DISABLE_INTR
568+
#define TIMER_INTR_NAME
569569

570570
//---------------------------------------------------------
571571
// Unknown Timer

0 commit comments

Comments
 (0)