1#ifndef Driver_NV_Gang_h_
2#define Driver_NV_Gang_h_
57 bool write(
size_t dstOffset, const
void* srcData,
size_t numBytesToWrite ) noexcept;
60 bool read(
size_t srcOffset,
void* dstData,
size_t numBytesToRead ) noexcept;
83 size_t normalizedSrcOffset,
85 size_t& numBytesToRead ) noexcept;
89 size_t normalizedDstOffset,
90 const uint8_t*& srcData,
91 size_t& numBytesToWrite ) noexcept;
This class defines the interface for a platform independent Non-volatile storage driver.
Definition Api.h:35
This class implements the Non-volatile storage driver using a collection of NV drivers to provide a '...
Definition Gang.h:39
void stop() noexcept
See Driver::NV::Api.
size_t getTotalSize() const noexcept
See Driver::NV::Api.
bool start() noexcept
See Driver::NV::Api.
Api ** m_drivers
List of drivers.
Definition Gang.h:96
size_t m_pageSize
Page size.
Definition Gang.h:102
bool m_started
Started state.
Definition Gang.h:108
size_t getNumPages() const noexcept
See Driver::NV::Api.
size_t m_totalSize
Total size.
Definition Gang.h:105
bool driverRead(Api **drivers, size_t normalizedSrcOffset, uint8_t *&dstData, size_t &numBytesToRead) noexcept
Helper method to read data.
bool write(size_t dstOffset, const void *srcData, size_t numBytesToWrite) noexcept
See Driver::NV::Api.
bool read(size_t srcOffset, void *dstData, size_t numBytesToRead) noexcept
See Driver::NV::Api.
bool driverWrite(Api **drivers, size_t normalizedDstOffset, const uint8_t *&srcData, size_t &numBytesToWrite) noexcept
Helper method to write data.
size_t m_numPages
Number of pages.
Definition Gang.h:99
size_t getPageSize() const noexcept
See Driver::NV::Api.
Gang(Api *drivers[])
Constructor.