From 3d586b3e0bb80784b42986c7c2013b4e9a99bbff Mon Sep 17 00:00:00 2001 From: "@CarlWachter" Date: Mon, 26 Feb 2024 18:17:56 +0100 Subject: [PATCH] FC frame after sending and synchronous testing --- src/can_bus.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/can_bus.cpp b/src/can_bus.cpp index acbcff0..4eba387 100644 --- a/src/can_bus.cpp +++ b/src/can_bus.cpp @@ -52,6 +52,8 @@ namespace sta { canBus_.send(msg); } + + canBus_.tx_.processFrame(); } if (flags & STA_RTOS_CAN_FLAG_MSG_AVAIL) @@ -67,6 +69,9 @@ namespace sta } } + // Synchronus message check + canBus_.processRx(); + // Process ISOTP transmissions canBus_.processTx(); }