diff --git a/FMNetwork.cpp b/FMNetwork.cpp index 10078b5..67d0f2e 100644 --- a/FMNetwork.cpp +++ b/FMNetwork.cpp @@ -114,6 +114,10 @@ void CFMNetwork::clock(unsigned int ms) return; } + // Ignore incoming polls + if (::memcmp(buffer, "FMP", 3U) == 0) + return; + // Invalid packet type? if (::memcmp(buffer, "FMD", 3U) != 0) return;