GM6000 Digital Heater Controller Branch: main
SDX-1330
Api.h
Go to the documentation of this file.
1#ifndef Driver_RHTemp_Simulated_Api_h_
2#define Driver_RHTemp_Simulated_Api_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 "Driver/RHTemp/Api.h"
17#include "Cpl/Dm/Mp/Float.h"
18#include "Cpl/Dm/Mp/Bool.h"
19
20
21///
22namespace Driver {
23///
24namespace RHTemp {
25///
26namespace Simulated {
27
28/** This class implements the RH/Temperature driver interface using model points
29 as the physical signals.
30
31 The Application is responsible for providing the Model Point instances.
32
33 The class is NOT thread safe. The application is RESPONSIBLE for ensuring
34 thread-safe usage.
35 */
37{
38public:
39 /// Constructor
40 Api( Cpl::Dm::Mp::Float& simulatedRHInputMP,
41 Cpl::Dm::Mp::Float& simulatedTempInputMP,
42 Cpl::Dm::Mp::Bool& simulateHeaterStateMP );
43
44public:
45 /// See Driver::RHTemp::Api
46 bool start() noexcept;
47
48 /// See Driver::RHTemp::Api
49 void stop() noexcept;
50
51public:
52 /// See Driver::RHTemp::Api
53 bool sample( float& rhOut, float& tempCOut ) noexcept;
54
55public:
56 /// See Driver::RHTemp::Api
57 bool setHeaterState( bool enabled ) noexcept;
58
59public:
60 /// See Driver::RHTemp::Api
61 Driver::RHTemp::Api::SamplingState_T startSample() noexcept;
62
63 /// See Driver::RHTemp::Api
65
66 /// See Driver::RHTemp::Api
67 Driver::RHTemp::Api::SamplingState_T getSample( float& rhOut, float& tempCOut ) noexcept;
68
69protected:
70 /// Simulated input value
71 Cpl::Dm::Mp::Float& m_mpRh;
72
73 /// Simulated input value
74 Cpl::Dm::Mp::Float& m_mpTemp;
75
76 /// Simulated output value
77 Cpl::Dm::Mp::Bool& m_mpHeaterEnabled;
78
79 /// Started state
81};
82
83} // End namespace(s)
84}
85}
86
87/*--------------------------------------------------------------------------*/
88#endif // end header latch
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 float.
Definition Float.h:41
This class defines an interface for reading and managing a combined RH and Temperature sensor.
Definition Api.h:33
SamplingState_T
State of the non-blocking sampling.
Definition Api.h:38
This class implements the RH/Temperature driver interface using model points as the physical signals.
Definition Api.h:37
bool m_started
Started state.
Definition Api.h:80
Cpl::Dm::Mp::Float & m_mpTemp
Simulated input value.
Definition Api.h:74
bool setHeaterState(bool enabled) noexcept
See Driver::RHTemp::Api.
Cpl::Dm::Mp::Float & m_mpRh
Simulated input value.
Definition Api.h:71
Driver::RHTemp::Api::SamplingState_T startSample() noexcept
See Driver::RHTemp::Api.
Driver::RHTemp::Api::SamplingState_T getSample(float &rhOut, float &tempCOut) noexcept
See Driver::RHTemp::Api.
Cpl::Dm::Mp::Bool & m_mpHeaterEnabled
Simulated output value.
Definition Api.h:77
Api(Cpl::Dm::Mp::Float &simulatedRHInputMP, Cpl::Dm::Mp::Float &simulatedTempInputMP, Cpl::Dm::Mp::Bool &simulateHeaterStateMP)
Constructor.
void stop() noexcept
See Driver::RHTemp::Api.
Driver::RHTemp::Api::SamplingState_T getSamplingState() noexcept
See Driver::RHTemp::Api.
bool start() noexcept
See Driver::RHTemp::Api.
bool sample(float &rhOut, float &tempCOut) noexcept
See Driver::RHTemp::Api.
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20
namespace