From 7bc7a0d335475b30869482020c93ba02ca93b5ea Mon Sep 17 00:00:00 2001 From: cfif Date: Thu, 18 Dec 2025 13:31:11 +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 --- DeviceStorage.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/DeviceStorage.c b/DeviceStorage.c index f7cb306..b2d7c15 100644 --- a/DeviceStorage.c +++ b/DeviceStorage.c @@ -98,10 +98,10 @@ bool DeviceStorage_Init(tDeviceStorage *env, tStorageInterface *storageCalibInte env->logger = logger; env->dataParam = (tDeviceDataNonVolatile *) dataReservedParamStore; - env->dataCalib = (void *) __itcm_start; + env->dataCalib = (void *) __itcm_start + 4; - DeviceStorage_InitCommon(env, storageParamInterface, nf_storage_param_size, - storageCalibInterface, nf_storage_calib_size); + DeviceStorage_InitCommon(env, storageCalibInterface, nf_storage_calib_size, + storageParamInterface, nf_storage_param_size); bool resultParam = DeviceStorage_LoadParam(env); bool resultCalib = DeviceStorage_LoadCalib(env);