// // Created by zemon on 20.02.24. // #ifndef HEAVY_TERMINAL_DEVICESTORAGE_H #define HEAVY_TERMINAL_DEVICESTORAGE_H #include "DataNonVolatile.h" #include "StorageIO.h" #include "stdbool.h" typedef struct { tDeviceDataNonVolatile nvm; } tDeviceStorage; bool DeviceStorage_Init(tDeviceStorage *env, tStorageInterface *storageInterface); #endif //HEAVY_TERMINAL_DEVICESTORAGE_H