GM6000 Digital Heater Controller Branch: main
SDX-1330
ModelPoints.h
Go to the documentation of this file.
1#ifndef Ajax_Main_Simulated_ModelPoints_h_
2#define Ajax_Main_Simulated_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
17#include "Cpl/Dm/Mp/Uint32.h"
18#include "Cpl/Dm/Mp/Bool.h"
19
20/** Encapsulate all Model Points in the 'mp' namespace to prevent polluting
21 the global name space
22 */
23namespace mp {
24
25/** This model point holds commanded PWM output signal for the Heater PWM signal
26
27 \b Units: duty cycle
28
29 \b Range: 0 to OPTION_DRIVER_DIO_PWM_MAX_DUTY_CYCLE_VALUE
30
31 \b Notes:
32 n/a
33*/
35
36/** This model point holds commanded PWM output signal for the Fan PWM signal
37
38 \b Units: duty cycle
39
40 \b Range: 0 to OPTION_DRIVER_DIO_PWM_MAX_DUTY_CYCLE_VALUE
41
42 \b Notes:
43 n/a
44*/
46
47/** This model point holds 'source' value for the HW Safety Limit Tripped
48 input signal
49
50 \b Units: boolean
51
52 \b Range:
53 true:= Safety Limit asserted
54 false: = normal operation
55
56 \b Notes:
57 n/a
58*/
60
61
62/*---------------------------------------------------------------------------*/
63/// The Application's Model Point Database
65
66
67} // end namespace
68#endif // end header latch
This concrete class implements a simple Model Database.
Definition ModelDatabase.h:56
This class provides a concrete implementation for a Point who's data is a bool.
Definition Bool.h:40
This class provides a concrete implementation for a Point who's data is a uint32_t.
Definition Uint32.h:43
Encapsulate all Model Points in the 'mp' namespace to prevent polluting the global name space.
Definition ModelPoints.h:30
Cpl::Dm::Mp::Uint32 mockedHeaterPwmOut
This model point holds commanded PWM output signal for the Heater PWM signal.
Cpl::Dm::Mp::Bool mockedHwSafetyIn
This model point holds 'source' value for the HW Safety Limit Tripped input signal.
Cpl::Dm::Mp::Uint32 mockedFanPwmOut
This model point holds commanded PWM output signal for the Fan PWM signal.
Cpl::Dm::ModelDatabase g_modelDatabase
The Application's Model Point Database.
Definition ModelPoints.h:64