GM6000 Digital Heater Controller Branch: main
SDX-1330
Private_.h
Go to the documentation of this file.
1#ifndef Cpl_Persistent_Private_h_
2#define Cpl_Persistent_Private_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#include "colony_config.h"
16#include <stdint.h>
17
18/** The number of bytes of the 'work-buffer'
19 */
20#ifndef OPTION_CPL_PERSISTENT_WORK_BUFFER_SIZE
21#define OPTION_CPL_PERSISTENT_WORK_BUFFER_SIZE 1024
22#endif
23
24
25///
26namespace Cpl {
27///
28namespace Persistent {
29
30/** This PACKAGE SCOPED buffer is a singleton that is available as 'work buffer'
31 for Chunk and Record instance to use WHEN executing in the RecordServer's
32 thread.
33 */
35
36
37}; // end namespaces
38};
39#endif // end header latch
#define OPTION_CPL_PERSISTENT_WORK_BUFFER_SIZE
The number of bytes of the 'work-buffer'.
Definition Private_.h:21
uint8_t g_workBuffer_[OPTION_CPL_PERSISTENT_WORK_BUFFER_SIZE]
This PACKAGE SCOPED buffer is a singleton that is available as 'work buffer' for Chunk and Record ins...
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20