From 4d5a3989acac35dbc24296ce3902bc83a07af33a Mon Sep 17 00:00:00 2001 From: wellenvogel Date: Mon, 3 Jan 2022 13:43:20 +0100 Subject: [PATCH] correctly handle actisense mode when writing out --- lib/channel/GwChannel.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/channel/GwChannel.cpp b/lib/channel/GwChannel.cpp index 786de11..40fbd48 100644 --- a/lib/channel/GwChannel.cpp +++ b/lib/channel/GwChannel.cpp @@ -130,7 +130,7 @@ void GwChannel::updateCounter(const char *msg, bool out) bool GwChannel::canSendOut(const char *buffer){ if (! enabled || ! impl) return false; - if (! NMEAout || readActisense || writeActisense) return false; + if (! NMEAout || readActisense) return false; if (writeFilter && ! writeFilter->canPass(buffer)) return false; return true; }