Deactivated default debug output. Closes #713

This commit is contained in:
Armin 2020-09-15 07:45:47 +02:00
parent 4cadabb872
commit 8b0a876a46
4 changed files with 8 additions and 6 deletions

View File

@ -1,7 +1,9 @@
## 2.6.2 2020/08
## 2.6.2 2020/09
- Added ATmega328PB support.
- Renamed hardware specific macro and function names.
- Renamed USE_SOFT_CARRIER and USE_NO_CARRIER macros to USE_SOFT_SEND_PWM and USE_NO_SEND_PWM.
- Removed blocking wait for ATmega32U4 Serial in examples.
- Deactivated default debug output.
## 2.6.1 2020/08
- Adjusted JVC and LG timing.

View File

@ -7,7 +7,7 @@
"type": "git",
"url": "https://github.com/z3t0/Arduino-IRremote.git"
},
"version": "2.6.1",
"version": "2.6.2",
"frameworks": "arduino",
"platforms": "atmelavr",
"authors" :

View File

@ -1,5 +1,5 @@
name=IRremote
version=2.6.1
version=2.6.2
author=shirriff, z3t0 <zetoslab@gmail.com>
maintainer=Armin Joachimsmeyer <armin.joachimsmeyer@gmail.com>
sentence=Send and receive infrared signals with multiple protocols

View File

@ -144,14 +144,14 @@ typedef enum {
} decode_type_t;
/**
* Set DEBUG to 1 for lots of lovely debug output.
* Comment this out for lots of lovely debug output.
*/
#define DEBUG 0
//#define DEBUG
//------------------------------------------------------------------------------
// Debug directives
//
#if DEBUG
#ifdef DEBUG
# define DBG_PRINT(...) Serial.print(__VA_ARGS__)
# define DBG_PRINTLN(...) Serial.println(__VA_ARGS__)
#else