From af7916929cc06bdb2080de15ad0250df402376e1 Mon Sep 17 00:00:00 2001 From: rusefillc Date: Thu, 10 Feb 2022 01:51:27 -0500 Subject: [PATCH] reducing the mess --- firmware/controllers/can/can_rx.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/firmware/controllers/can/can_rx.cpp b/firmware/controllers/can/can_rx.cpp index 3434cc7047..939e55514f 100644 --- a/firmware/controllers/can/can_rx.cpp +++ b/firmware/controllers/can/can_rx.cpp @@ -62,10 +62,10 @@ bool acceptCanRx(int /*sid*/) { * this build-in CAN sniffer is very basic but that's our CAN sniffer */ static void printPacket(const size_t busIndex, const CANRxFrame &rx) { - bool accept = acceptCanRx(CAN_SID(rx)); - if (!accept) { - return; - } +// bool accept = acceptCanRx(CAN_SID(rx)); +// if (!accept) { +// return; +// } // only print info if we're in can debug mode