Обновление
This commit is contained in:
parent
98c19a0c61
commit
a4c1ef5b2c
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in New Issue