GM6000 Digital Heater Controller Branch: main
SDX-1330
ModelPoints.h
Go to the documentation of this file.
1#ifndef Driver_AIO_Eros_ModelPoints_h_
2#define Driver_AIO_Eros_ModelPoints_h_
3/*-----------------------------------------------------------------------------
4* This file is part of the Colony.Apps Project. The Colony.Apps 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.apps/license.txt
8*
9* Copyright (c) 2015-2023 John T. Taylor
10*
11* Redistributions of the source code must retain the above copyright notice.
12*----------------------------------------------------------------------------*/
13/** @file
14
15 This file defines all of the Model Points for Ajax application.
16
17 All of the model points are placed into the 'mp' namespace. The model
18 point names map 1-to-1 with the instance names.
19
20 The Application/Client is RESPONSIBLE for ensuring input values are with
21 the defined range for the model point instance.
22 */
23
25#include "Cpl/Dm/Mp/Array.h"
26
27/** Encapsulate all Model Points in the 'mp' namespace to prevent polluting
28 the global name space
29 */
30namespace mp {
31
32/** This model point holds the low level ADC Bit value and its corresponding
33 Temperature value in degrees Fahrenheit.
34
35 \b Units: Array
36
37 \b Range: Index[0] = ADC Bits
38 Index[1] = Temperature 'F
39
40 \b Notes:
41 n/a
42*/
44
45
46/*---------------------------------------------------------------------------*/
47/// The Application's Model Point Database
49
50
51} // end namespace
52#endif // end header latch
This concrete class implements a simple Model Database.
Definition ModelDatabase.h:56
int32_t Array
Definition Array.h:457
Encapsulate all Model Points in the 'mp' namespace to prevent polluting the global name space.
Definition ModelPoints.h:30
Cpl::Dm::Mp::ArrayInt32< 2 > erosThermistorSample
This model point holds the low level ADC Bit value and its corresponding Temperature value in degrees...
Cpl::Dm::ModelDatabase g_modelDatabase
The Application's Model Point Database.
Definition ModelPoints.h:64