From 182ada3bba0aa33781232238c6bd77e987f5e9f1 Mon Sep 17 00:00:00 2001 From: Oleg Date: Tue, 4 Mar 2025 14:17:33 +0300 Subject: [PATCH] Fix mistakes --- Protocol/CAN.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Protocol/CAN.cpp b/Protocol/CAN.cpp index ec996bc..639ce67 100644 --- a/Protocol/CAN.cpp +++ b/Protocol/CAN.cpp @@ -34,7 +34,7 @@ void CAN::transmitMsg(Uint16 boxNumber, const CANMessage& message){ } -void transmitMsg(Uint16 boxNumber, const Uint32& message){ +void CAN::transmitMsg(Uint16 boxNumber, const Uint32& message){ if (boxNumber > 31) return; Uint32 mboxControl(0); @@ -65,7 +65,7 @@ void transmitMsg(Uint16 boxNumber, const Uint32& message){ } -void transmitMsg(Uint16 boxNumber, const Uint32& message, const Uint16 dlc){ +void CAN::transmitMsg(Uint16 boxNumber, const Uint32& message, const Uint16 dlc){ if (boxNumber > 31) return; Uint32 mboxControl(0);