From 98d6a2cf3fca590027f8378496f932ae432dd3f5 Mon Sep 17 00:00:00 2001 From: Rafi Khan Date: Fri, 20 Jan 2017 23:13:28 -0600 Subject: [PATCH] renamed "boarddefs.h" to "IRremoteBoardDefs.h" to avoid possible conflcits. This was suggested in #375 and aims to prevent a **possible** issue. --- boarddefs.h => IRremoteBoardDefs.h | 6 +++--- IRremoteInt.h | 2 +- changelog.md | 3 +++ 3 files changed, 7 insertions(+), 4 deletions(-) rename boarddefs.h => IRremoteBoardDefs.h (99%) diff --git a/boarddefs.h b/IRremoteBoardDefs.h similarity index 99% rename from boarddefs.h rename to IRremoteBoardDefs.h index 62b6be4fb..2e4f299bd 100644 --- a/boarddefs.h +++ b/IRremoteBoardDefs.h @@ -17,8 +17,8 @@ // Whynter A/C ARC-110WD added by Francesco Meschia //****************************************************************************** -#ifndef boarddefs_h -#define boarddefs_h +#ifndef IRremoteBoardDefs_h +#define IRremoteBoardDefs_h //------------------------------------------------------------------------------ // Defines for blinking the LED @@ -545,4 +545,4 @@ # error "Internal code configuration error, no known IR_USE_TIMER# defined\n" #endif -#endif // ! boarddefs_h +#endif // ! IRremoteBoardDefs_h diff --git a/IRremoteInt.h b/IRremoteInt.h index 1c319acbf..bfffc2f0c 100644 --- a/IRremoteInt.h +++ b/IRremoteInt.h @@ -108,6 +108,6 @@ EXTERN volatile irparams_t irparams; #define SPACE 1 // All board specific stuff has been moved to its own file, included here. -#include "boarddefs.h" +#include "IRremoteBoardDefs.h" #endif diff --git a/changelog.md b/changelog.md index fbe70b457..30ea505b1 100644 --- a/changelog.md +++ b/changelog.md @@ -1,3 +1,6 @@ +## 2.2.2 - 2017/01/20 +- Renamed "boarddefs.h" [ISSUE #375](https://github.com/z3t0/Arduino-IRremote/issues/375) + ## 2.2.1 - 2016/07/27 - Added tests for Lego Power Functions Protocol [PR #336](https://github.com/z3t0/Arduino-IRremote/pull/336)