GM6000 Digital Heater Controller Branch: main
SDX-1330
Null.h
Go to the documentation of this file.
1#ifndef Driver_NV_Null_h_
2#define Driver_NV_Null_h_
3/*-----------------------------------------------------------------------------
4* This file is part of the Colony.Core Project. The Colony.Core Project is an
5* open source project with a BSD type of licensing agreement. See the license
6* agreement (license.txt) in the top/ directory or on the Internet at
7* http://integerfox.com/colony.core/license.txt
8*
9* Copyright (c) 2014-2022 John T. Taylor
10*
11* Redistributions of the source code must retain the above copyright notice.
12*----------------------------------------------------------------------------*/
13/** @file */
14
15
16#include "colony_config.h"
17#include "Driver/NV/Api.h"
18#include <memory.h>
19
20
21/** The page size, in bytes, of the EEPROM chips.
22 */
23#ifndef OPTION_DRIVER_NV_NULL_PAGE_SIZE
24#define OPTION_DRIVER_NV_NULL_PAGE_SIZE 128
25#endif
26
27 /** Total page count
28 */
29#ifndef OPTION_DRIVER_NV_NULL_TOTAL_PAGES
30#define OPTION_DRIVER_NV_NULL_TOTAL_PAGES (512)
31#endif
32
33 ///
34namespace Driver {
35///
36namespace NV {
37
38
39/** This concrete class provides a 'null' implementation of the NV Storage
40 interface.
41 */
42class Null : public Api
43{
44public:
45 /// Constructor
47 : m_numPages( numPages )
48 , m_bytesPerPage( bytesPerPage )
49 {
50 }
51
52public:
53 /// See Driver::NV::Api
54 bool start() noexcept { return true; }
55
56 /// See Driver::NV::Api
57 void stop() noexcept {}
58
59
60 /// See Driver::NV::Api. Always successful
61 bool write( size_t dstOffset, const void* srcData, size_t numBytesToWrite ) noexcept { return true; }
62
63 /// See Driver::NV::Api. Always successful. Sets the returned data to all zeros
64 bool read( size_t srcOffset, void* dstData, size_t numBytesToRead ) noexcept { memset( dstData, 0, numBytesToRead ); return true; }
65
66 /// See Driver::NV::Api.
67 size_t getNumPages() const noexcept { return m_numPages; }
68
69 /// See Driver::NV::Api.
70 size_t getPageSize() const noexcept { return m_bytesPerPage; }
71
72protected:
73 /// Number of pages
74 size_t m_numPages;
75
76 /// Bytes per page
78};
79
80
81
82
83}; // end namespaces
84};
85#endif // end header latch
#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
namespace