Обновление

This commit is contained in:
cfif 2025-12-18 13:57:43 +03:00
parent 98c19a0c61
commit a4c1ef5b2c
2 changed files with 10 additions and 4 deletions

View File

@ -66,11 +66,15 @@ bool DeviceStorage_LoadCalib(tDeviceStorage *env) {
return false;
}
void DeviceStorage_ForceDump(tDeviceStorage *env) {
void DeviceStorageCalib_ForceDump(tDeviceStorage *env) {
VarsTabDumpObserverCalib_Dump(&env->dumpObserver);
}
void DeviceStorageParam_ForceDump(tDeviceStorage *env) {
VarsTabDumpObserverParam_Dump(&env->dumpObserver);
}
void DeviceStorage_DelayedDump(tDeviceStorage *env) {
void DeviceStorageParam_DelayedDump(tDeviceStorage *env) {
env->trackableVarsTab = 1;
}

View File

@ -27,7 +27,9 @@ bool DeviceStorage_Init(tDeviceStorage *env, tStorageInterface *storageCalibInte
tStorageInterface *storageParamInterface,
tLoggerInterface *logger);
void DeviceStorage_ForceDump(tDeviceStorage *env);
void DeviceStorage_DelayedDump(tDeviceStorage *env);
void DeviceStorageCalib_ForceDump(tDeviceStorage *env);
void DeviceStorageParam_ForceDump(tDeviceStorage *env);
void DeviceStorageParam_DelayedDump(tDeviceStorage *env);
#endif //HVAC_DEVICESTORAGE_H