GM6000 Digital Heater Controller Branch: main
SDX-1330
Thermistor.h
Go to the documentation of this file.
1#ifndef Driver_AIO_Ajax_Thermisttor_h_
2#define Driver_AIO_Ajax_Thermisttor_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-2023 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"
18#include "Cpl/Itc/CloseSync.h"
20#include "Cpl/System/Timer.h"
21#include "Cpl/Dm/Mp/Int32.h"
22
23/// Sampling time, in milliseconds.
24#ifndef OPTION_DRIVER_AIO_AJAX_SAMPLE_TIME_MS
25#define OPTION_DRIVER_AIO_AJAX_SAMPLE_TIME_MS 1000 // 1 HZ
26#endif
27
28/// Number of consecutive sample to take when averaging raw readings
29#ifndef OPTION_DRIVER_AIO_AJAX_NUM_SAMPLES_TO_AVG
30#define OPTION_DRIVER_AIO_AJAX_NUM_SAMPLES_TO_AVG 3
31#endif
32
33/// Number of ADC Bits/resolution required
34#ifndef OPTION_DRIVER_AIO_AJAX_ADC_BIT_RESOLUTION
35#define OPTION_DRIVER_AIO_AJAX_ADC_BIT_RESOLUTION 12
36#endif
37
38/// Threshold for max valid ADC reading (i.e. treated as a 'short')
39#ifndef OPTION_DRIVER_AIO_AJAX_ADC_MAX_RAIL_BITS
40#define OPTION_DRIVER_AIO_AJAX_ADC_MAX_RAIL_BITS (4096-100)
41#endif
42
43/// Threshold for min valid ADC reading (i.e. treated as an 'open')
44#ifndef OPTION_DRIVER_AIO_AJAX_ADC_MIN_RAIL_BITS
45#define OPTION_DRIVER_AIO_AJAX_ADC_MIN_RAIL_BITS 100
46#endif
47
48
49/// namespace
50namespace Driver
51{
52/// namespace
53namespace AIO
54{
55/// namespace
56namespace Ajax
57{
58
59/** This class is responsible for sampling the on-board temperature sensor
60 every N milliseconds and populating a model point. The raw input is
61 averaged and converted to hundreds of degree's Fahrenheit.
62 */
64{
65public:
66 /// Constructor
69 Cpl::Dm::Mp::Int32& mpTemperatureOutput );
70
71public:
72 /// This method starts the driver (See Cpl::Itc::CloseSync)
73 void request( OpenMsg& msg );
74
75 /// This method stops the driver (See Cpl::Itc::CloseSync)
76 void request( CloseMsg& msg );
77
78protected:
79 /// SW Timer expired
80 void expired( void ) noexcept;
81
82protected:
83 /** Hook method (for a child class) to capture the raw ADC bits for the
84 temperature value. A 'temperatureF' value of 0 indicates a invalid
85 temperature.
86 */
87 virtual void hookAdcSample( uint32_t adcBits, int32_t temperatureF = 0) {}
88
89protected:
90 /// Output MP
92
93 /// Handle to the underlying ADC driver/HW
95
96 /// open/close state
98};
99
100} // End namespace(s)
101}
102}
103#endif // end header-latch
This file defines a hardware abstraction layer (HAL) for sampling a single Analog input source.
#define DriverAIOHalSingleInput_T
This data type defines the platform specific 'handle' to a analog input.
Definition HalSingleInput.h:33
This class extends the Cpl::Dm::EventLoop and Cpl::Itc:Mailbox classes to support the asynchronous ch...
Definition MailboxServer.h:43
This class provides a concrete implementation for a Point who's data is a int32_t.
Definition Int32.h:42
This partially concrete class implements the synchronous ITC close call for the CloseApi.
Definition CloseSync.h:34
This template class represents a service request message to a particular server.
Definition RequestMessage.h:34
This mostly concrete interface defines the operations that can be performed on a software timer.
Definition Timer.h:47
This class is responsible for sampling the on-board temperature sensor every N milliseconds and popul...
Definition Thermistor.h:64
DriverAIOHalSingleInput_T m_adcDriver
Handle to the underlying ADC driver/HW.
Definition Thermistor.h:94
bool m_opened
open/close state
Definition Thermistor.h:97
void request(OpenMsg &msg)
This method starts the driver (See Cpl::Itc::CloseSync)
void request(CloseMsg &msg)
This method stops the driver (See Cpl::Itc::CloseSync)
Cpl::Dm::Mp::Int32 & m_mpTempOut
Output MP.
Definition Thermistor.h:91
virtual void hookAdcSample(uint32_t adcBits, int32_t temperatureF=0)
Hook method (for a child class) to capture the raw ADC bits for the temperature value.
Definition Thermistor.h:87
void expired(void) noexcept
SW Timer expired.
Thermistor(Cpl::Dm::MailboxServer &myMbox, DriverAIOHalSingleInput_T adcDriver, Cpl::Dm::Mp::Int32 &mpTemperatureOutput)
Constructor.
The 'Ajax' namespace is the root name space all GM6000 application specific source code.
namespace