GM6000 Digital Heater Controller Branch: main
SDX-1330
Api.h
Go to the documentation of this file.
1#ifndef Eros_Test_Thermistor_Api_h_
2#define Eros_Test_Thermistor_Api_h_
3/*-----------------------------------------------------------------------------
4* COPYRIGHT_HEADER_TO_BE_FILLED_LATER
5*----------------------------------------------------------------------------*/
6/** @file */
7
8
9#include "colony_config.h"
10#include "Cpl/MApp/MApp_.h"
11#include "Cpl/Dm/Mp/Array.h"
14
15
16/// Default interval time (in milliseconds) for displaying temperature
17#ifndef OPTION_EROS_TEST_THERMISTOR_DISPLAY_INTERVAL_MS
18#define OPTION_EROS_TEST_THERMISTOR_DISPLAY_INTERVAL_MS (10*1000) // 10 second
19#endif
20
21
22///
23namespace Eros {
24///
25namespace Test {
26///
27namespace Thermistor {
28
29
30/** This concrete class implements MApp the monitors the output of the
31 specialized Eros Thermistor driver and periodically writes the temperature
32 and ADC-bits values to the trace output. The MApp also collects some metrics
33 */
34class Api : public Cpl::MApp::MApp_
35{
36public:
37 /// The default MApp Name
38 static constexpr const char* DEFAULT_NAME = "thermistor";
39
40 /** Usage string (recommended that lines do not exceed 80 chars)
41 1 2 3 4 5 6 7 8
42 12345678901234567890123456789012345678901234567890123456789012345678901234567890
43 */
44 static constexpr const char* USAGE = "args: [<displayms>]\n"
45 " <displayms> milliseconds between outputs. Default is 10000ms";
46
47 /** Description string (recommended that lines do not exceed 80 chars)
48 1 2 3 4 5 6 7 8
49 12345678901234567890123456789012345678901234567890123456789012345678901234567890
50 */
51 static constexpr const char* DESCRIPTION = "Periodically Samples temperature and displays sample/metric values.";
52
53
54public:
55 /// Constructor.
58 Cpl::Dm::Mp::ArrayInt32<2>& mpDriverSamples,
59 const char* name = DEFAULT_NAME );
60
61protected:
62 /// See Cpl::MApp::Api
63 void intialize_() noexcept;
64
65 /// See Cpl::MApp::Api
66 bool start_( char* args ) noexcept;
67
68 /// See Cpl::MApp::Api
69 void stop_() noexcept;
70
71 /// See Cpl::MApp::Api
72 void shutdown_() noexcept;
73
74protected:
75 /// Helper method to parse the 'command line' options
76 bool parse( char* args ) noexcept;
77
78 /// Change notification for new ADC Sample available
79 void changedADCSample( Cpl::Dm::Mp::ArrayInt32<2>& mpThatChanged, Cpl::Dm::SubscriberApi& clientObserver ) noexcept;
80
81
82protected:
83 /// Model point that contains the ADC samples
84 Cpl::Dm::Mp::ArrayInt32<2>& m_mpSample;
85
86 /// Observer for change notifications
87 Cpl::Dm::SubscriberComposer<Api, Cpl::Dm::Mp::ArrayInt32<2>> m_obSample;
88
89 /// Cumulative sum Temp
90 int64_t m_sumTemp;
91
92 /// Cumulative sum ADC-Bits
93 uint64_t m_sumADCBits;
94
95 /// Maximum Temp. sampled
96 int32_t m_maxTemp;
97
98 /// Minimum Temp. sampled
99 int32_t m_minTemp;
100
101 /// Maximum ADC-Bits. sampled
102 uint32_t m_maxADCBits;
103
104 /// Minimum ADC-Bits. sampled
105 uint32_t m_minADCBits;
106
107 /// Number of samples
108 uint32_t m_numSamples;
109
110 /// Display interval time
111 uint32_t m_displayMs;
112
113 /// Time marker of last display action
115
116 /// Track my invalid data state
118};
119
120} // end namespaces
121}
122}
123#endif // end header latch
This template class implements a THREAD SAFE Ring Buffer.
Definition RingBufferMT.h:33
This class extends the Cpl::Dm::EventLoop and Cpl::Itc:Mailbox classes to support the asynchronous ch...
Definition MailboxServer.h:43
int32_t Array
Definition Array.h:457
This partial concrete class provide common infrastructure that is common to all MApp instances.
Definition MApp_.h:23
This concrete class implements MApp the monitors the output of the specialized Eros Thermistor driver...
Definition Api.h:35
uint32_t m_displayMs
Display interval time.
Definition Api.h:111
void shutdown_() noexcept
See Cpl::MApp::Api.
Cpl::Dm::SubscriberComposer< Api, Cpl::Dm::Mp::ArrayInt32< 2 > > m_obSample
Observer for change notifications.
Definition Api.h:87
uint32_t m_maxADCBits
Maximum ADC-Bits. sampled.
Definition Api.h:102
static constexpr const char * DEFAULT_NAME
The default MApp Name.
Definition Api.h:38
int64_t m_sumTemp
Cumulative sum Temp.
Definition Api.h:90
int32_t m_minTemp
Minimum Temp. sampled.
Definition Api.h:99
Cpl::Dm::Mp::ArrayInt32< 2 > & m_mpSample
Model point that contains the ADC samples.
Definition Api.h:84
Api(Cpl::Container::Map< MAppApi > &mappList, Cpl::Dm::MailboxServer &myMbox, Cpl::Dm::Mp::ArrayInt32< 2 > &mpDriverSamples, const char *name=DEFAULT_NAME)
Constructor.
uint32_t m_timeMarkerMs
Time marker of last display action.
Definition Api.h:114
static constexpr const char * DESCRIPTION
Description string (recommended that lines do not exceed 80 chars) 1 2 3 4 5 6 7 8 123456789012345678...
Definition Api.h:51
void stop_() noexcept
See Cpl::MApp::Api.
bool start_(char *args) noexcept
See Cpl::MApp::Api.
uint32_t m_minADCBits
Minimum ADC-Bits. sampled.
Definition Api.h:105
void intialize_() noexcept
See Cpl::MApp::Api.
int32_t m_maxTemp
Maximum Temp. sampled.
Definition Api.h:96
bool parse(char *args) noexcept
Helper method to parse the 'command line' options.
bool m_invalidData
Track my invalid data state.
Definition Api.h:117
static constexpr const char * USAGE
Usage string (recommended that lines do not exceed 80 chars) 1 2 3 4 5 6 7 8 123456789012345678901234...
Definition Api.h:44
void changedADCSample(Cpl::Dm::Mp::ArrayInt32< 2 > &mpThatChanged, Cpl::Dm::SubscriberApi &clientObserver) noexcept
Change notification for new ADC Sample available.
uint32_t m_numSamples
Number of samples.
Definition Api.h:108
uint64_t m_sumADCBits
Cumulative sum ADC-Bits.
Definition Api.h:93
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20
The 'Eros' namespace is the root name space all of the GM6000 Engineering Test Application specific s...
Definition screens.h:22