From 59d468bb1e6f0296859fab010de90646d3b15ce2 Mon Sep 17 00:00:00 2001 From: cyberman54 Date: Mon, 28 Feb 2022 22:35:56 +0100 Subject: [PATCH] senddata.cpp: fix logging tag --- src/senddata.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/senddata.cpp b/src/senddata.cpp index fedee7da..d55ee92c 100644 --- a/src/senddata.cpp +++ b/src/senddata.cpp @@ -1,6 +1,9 @@ // Basic Config #include "senddata.h" +// Local logging tag +static const char TAG[] = __FILE__; + void setSendIRQ(TimerHandle_t xTimer) { xTaskNotify(irqHandlerTask, SENDCYCLE_IRQ, eSetBits); }