From dd6da0d0cd84a87f55fd3bece076a1721fd28e4b Mon Sep 17 00:00:00 2001 From: salocinx Date: Thu, 2 Feb 2017 14:20:41 +0100 Subject: [PATCH] Update irRecv.cpp --- irRecv.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/irRecv.cpp b/irRecv.cpp index 6343856..04ef385 100644 --- a/irRecv.cpp +++ b/irRecv.cpp @@ -84,6 +84,11 @@ int IRrecv::decode (decode_results *results) DBG_PRINTLN("Attempting Lego Power Functions"); if (decodeLegoPowerFunctions(results)) return true ; #endif + +#if DECODE_CDTV + DBG_PRINTLN("Attempting Commodore Amiga CDTV decode"); + if (decodeCDTV(results)) return true; +#endif // decodeHash returns a hash on any input. // Thus, it needs to be last in the list.