Обновление
This commit is contained in:
parent
98c19a0c61
commit
a4c1ef5b2c
|
|
@ -66,11 +66,15 @@ bool DeviceStorage_LoadCalib(tDeviceStorage *env) {
|
||||||
return false;
|
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);
|
VarsTabDumpObserverParam_Dump(&env->dumpObserver);
|
||||||
}
|
}
|
||||||
|
|
||||||
void DeviceStorage_DelayedDump(tDeviceStorage *env) {
|
void DeviceStorageParam_DelayedDump(tDeviceStorage *env) {
|
||||||
env->trackableVarsTab = 1;
|
env->trackableVarsTab = 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -27,7 +27,9 @@ bool DeviceStorage_Init(tDeviceStorage *env, tStorageInterface *storageCalibInte
|
||||||
tStorageInterface *storageParamInterface,
|
tStorageInterface *storageParamInterface,
|
||||||
tLoggerInterface *logger);
|
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
|
#endif //HVAC_DEVICESTORAGE_H
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue