1
0
mirror of https://github.com/thooge/esp32-nmea2000-obp60.git synced 2025-12-12 13:33:06 +01:00

correctly handle actisense mode when writing out

This commit is contained in:
wellenvogel
2022-01-03 13:43:20 +01:00
parent d0053c7f32
commit 4d5a3989ac

View File

@@ -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;
}