From 7e06dfc9de03f175782ad66ddd7fb9b09b2aab6a Mon Sep 17 00:00:00 2001 From: cfif Date: Fri, 31 Oct 2025 15:02:18 +0300 Subject: [PATCH] =?UTF-8?q?=D0=9E=D0=B1=D0=BD=D0=BE=D0=B2=D0=BB=D0=B5?= =?UTF-8?q?=D0=BD=D0=B8=D0=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- VarTabDumpObserver.c | 5 ++++- VarsTabDumpObserver.h | 3 ++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/VarTabDumpObserver.c b/VarTabDumpObserver.c index 25d6818..446c89c 100644 --- a/VarTabDumpObserver.c +++ b/VarTabDumpObserver.c @@ -21,8 +21,11 @@ void VarsTabDumpObserver_Init( size_t sizeCalib, size_t sizeParam, tVariablesTable *VarsTab, - uint32_t trackableGroup + uint32_t trackableGroup, + tLoggerInterface *logger ) { + env->logger = logger; + env->interfaceCalib = storageCalibInterface; env->interfaceParam = storageParamInterface; diff --git a/VarsTabDumpObserver.h b/VarsTabDumpObserver.h index a82393e..1e51eeb 100644 --- a/VarsTabDumpObserver.h +++ b/VarsTabDumpObserver.h @@ -45,7 +45,8 @@ void VarsTabDumpObserver_Init( size_t sizeCalib, size_t sizeParam, tVariablesTable *VarsTab, - uint32_t trackableGroup + uint32_t trackableGroup, + tLoggerInterface *logger ); bool VarsTabDumpObserverCalib_Load(tVarsTabDumpObserver *env);