From 616a8ddbcec2ec30c1f36c2ec112c43980ea6dd8 Mon Sep 17 00:00:00 2001 From: Paul Hollinsky Date: Thu, 31 Mar 2022 15:40:28 -0400 Subject: [PATCH] Report transmit receipts to kernel These will be used for IFF_ECHO --- src/main.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/main.cpp b/src/main.cpp index f268bc9..d3a00f8 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -277,8 +277,6 @@ void searchForDevices() { // Create rx listener newDevice.device->addMessageCallback(icsneo::CANMessageCallback([serial](std::shared_ptr message) { - if(message->transmitted) - return; auto canMessage = std::static_pointer_cast(message); const OpenDevice* openDevice = nullptr; std::lock_guard lg(openDevicesMutex);