summaryrefslogtreecommitdiff
path: root/irmp.c
diff options
context:
space:
mode:
authorukw2015-12-29 07:31:22 +0000
committerukw2015-12-29 07:31:22 +0000
commit173b00a6f5d5c604471f9755d80c9181da15133c (patch)
tree47afc72154187fdb337718d2fc38244f80011e40 /irmp.c
parent113fbb47092b498f56d79aaaf4ac1476a3ff1c23 (diff)
downloadirmp-173b00a6f5d5c604471f9755d80c9181da15133c.zip
Version 2.9.7b: reduced the number of autorepeated frames to 0 for KASEIKYO and SAMSUNG32
git-svn-id: svn://mikrocontroller.net/irmp@173 aeb2e35e-bfc4-4214-b83c-9e8de998ed28
Diffstat (limited to 'irmp.c')
-rw-r--r--irmp.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/irmp.c b/irmp.c
index e473438..8cbeb49 100644
--- a/irmp.c
+++ b/irmp.c
@@ -3,7 +3,7 @@
*
* Copyright (c) 2009-2015 Frank Meyer - frank(at)fli4l.de
*
- * $Id: irmp.c,v 1.182 2015/11/18 08:27:50 fm Exp $
+ * $Id: irmp.c,v 1.183 2015/12/03 18:13:45 fm Exp $
*
* Supported AVR mikrocontrollers:
*
@@ -4558,7 +4558,7 @@ irmp_ISR (void)
else
#endif
-#if IRMP_SUPPORT_KASEIKYO_PROTOCOL == 1
+#if 0 && IRMP_SUPPORT_KASEIKYO_PROTOCOL == 1 // fm 2015-12-02: don't ignore every 2nd frame
// if KASEIKYO protocol and the code will be repeated within 50 ms, we will ignore 2nd repetition frame
if (irmp_param.protocol == IRMP_KASEIKYO_PROTOCOL && repetition_frame_number == 1)
{
@@ -4571,7 +4571,7 @@ irmp_ISR (void)
else
#endif
-#if IRMP_SUPPORT_SAMSUNG_PROTOCOL == 1
+#if 0 && IRMP_SUPPORT_SAMSUNG_PROTOCOL == 1 // fm 2015-12-02: don't ignore every 2nd frame
// if SAMSUNG32 or SAMSUNG48 protocol and the code will be repeated within 50 ms, we will ignore every 2nd frame
if ((irmp_param.protocol == IRMP_SAMSUNG32_PROTOCOL || irmp_param.protocol == IRMP_SAMSUNG48_PROTOCOL) && (repetition_frame_number & 0x01))
{