From 71e17dd1b1e26ce29417f38e0097ae4f0613a08c Mon Sep 17 00:00:00 2001 From: AnalysIR Date: Sat, 26 Mar 2016 14:22:06 +0000 Subject: [PATCH] Fixed bug in ir_Dish.cpp for sending One of our users of AnalysIR, reported issues with sending DIsh signals. After some investigation we realised that this file was neglecting to send the trailing mark after the bits. Fix is included in this update & has been tested on a live Dish device by our own user. AnalysIR - 26th March 2016 ---------------------------------------- https://www.AnalysIR.com/ --- ir_Dish.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/ir_Dish.cpp b/ir_Dish.cpp index 3dad813..fa8e065 100644 --- a/ir_Dish.cpp +++ b/ir_Dish.cpp @@ -48,6 +48,7 @@ void IRsend::sendDISH (unsigned long data, int nbits) space(DISH_ZERO_SPACE); } } + mark(DISH_HDR_MARK); //added 26th March 2016, by AnalysIR ( https://www.AnalysIR.com ) } #endif