1#ifndef Driver_NV_Null_h_
2#define Driver_NV_Null_h_
16#include "colony_config.h"
23#ifndef OPTION_DRIVER_NV_NULL_PAGE_SIZE
24#define OPTION_DRIVER_NV_NULL_PAGE_SIZE 128
29#ifndef OPTION_DRIVER_NV_NULL_TOTAL_PAGES
30#define OPTION_DRIVER_NV_NULL_TOTAL_PAGES (512)
54 bool start() noexcept {
return true; }
61 bool write(
size_t dstOffset,
const void* srcData,
size_t numBytesToWrite )
noexcept {
return true; }
64 bool read(
size_t srcOffset,
void* dstData,
size_t numBytesToRead )
noexcept { memset( dstData, 0, numBytesToRead );
return true; }
#define OPTION_DRIVER_NV_NULL_TOTAL_PAGES
Total page count.
Definition Null.h:30
#define OPTION_DRIVER_NV_NULL_PAGE_SIZE
The page size, in bytes, of the EEPROM chips.
Definition Null.h:24
This class defines the interface for a platform independent Non-volatile storage driver.
Definition Api.h:35
This concrete class provides a 'null' implementation of the NV Storage interface.
Definition Null.h:43
size_t m_bytesPerPage
Bytes per page.
Definition Null.h:77
void stop() noexcept
See Driver::NV::Api.
Definition Null.h:57
size_t m_numPages
Number of pages.
Definition Null.h:74
bool read(size_t srcOffset, void *dstData, size_t numBytesToRead) noexcept
See Driver::NV::Api. Always successful. Sets the returned data to all zeros.
Definition Null.h:64
bool write(size_t dstOffset, const void *srcData, size_t numBytesToWrite) noexcept
See Driver::NV::Api. Always successful.
Definition Null.h:61
Null(size_t numPages=OPTION_DRIVER_NV_NULL_PAGE_SIZE, size_t bytesPerPage=OPTION_DRIVER_NV_NULL_TOTAL_PAGES)
Constructor.
Definition Null.h:46
size_t getPageSize() const noexcept
See Driver::NV::Api.
Definition Null.h:70
bool start() noexcept
See Driver::NV::Api.
Definition Null.h:54
size_t getNumPages() const noexcept
See Driver::NV::Api.
Definition Null.h:67