GM6000 Digital Heater Controller Branch: main
SDX-1330
Api.h
Go to the documentation of this file.
1#ifndef Eros_Test_Cycle_Api_h_
2#define Eros_Test_Cycle_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"
12#include "Cpl/System/Timer.h"
13#include "Driver/DIO/Pwm.h"
14
15/// Default interval time (in milliseconds) for polling the duty cycle
16#ifndef OPTION_EROS_TEST_CYCLE_INTERVAL_MS
17#define OPTION_EROS_TEST_CYCLE_INTERVAL_MS 1000
18#endif
19
20///
21namespace Eros {
22///
23namespace Test {
24///
25namespace Cycle {
26
27
28/** This concrete class implements MApp the duty cycles the heating equipment
29 based on command arguments
30 */
32{
33 /// The MApp Name
34 static constexpr const char* MAPP_NAME = "cycle";
35
36 /** Usage string (recommended that lines do not exceed 80 chars)
37 1 2 3 4 5 6 7 8
38 12345678901234567890123456789012345678901234567890123456789012345678901234567890
39 */
40 static constexpr const char* USAGE = "args: [<heatpwm> <fanpwm> [<ontimems> <offtimems> [<repeat>]]]\n"
41 " <heatpwm> duty cycle % for the heater PWM. Default: 100\n"
42 " <fanpwm> duty cycle % for the fan PWM. Default: 100\n"
43 " <ontimems> duration (in msec) for the equipment on. Default: 60000\n"
44 " <offtimems> duration (in msec) for the equipment off. Default: 60000\n"
45 " <repeat> Number of times to repeat the duty cycle. Default: 5";
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 = "Duty Cycles the Heating equipment.";
52
53
54public:
55 /// Constructor.
58 Driver::DIO::Pwm& heaterPWMDriver,
59 Driver::DIO::Pwm& fanPWMDriver );
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 /// Timer expired callback
79 void expired( void ) noexcept;
80
81
82protected:
83 /// Driver
85
86 /// Driver
87 Driver::DIO::Pwm& m_fanDriver;
88
89 /// Heater PWM
90 unsigned m_heaterPWM;
91
92 /// Fan PWM
93 unsigned m_fanPWM;
94
95 /// On time (in milliseconds)
96 uint32_t m_onTimeMs;
97
98 /// Off time (in milliseconds)
99 uint32_t m_offTimeMs;
100
101 /// Max Repeat count
102 unsigned m_maxCycles;
103
104 /// Repeat count
105 unsigned m_cycleCount;
106
107 /// Time marker for the duty cycle
109
110 /// Duty Cycle state
112
113 /// Flag for initial cycle
115};
116
117}; // end namespaces
118};
119};
120#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
This partial concrete class provide common infrastructure that is common to all MApp instances.
Definition MApp_.h:23
This mostly concrete interface defines the operations that can be performed on a software timer.
Definition Timer.h:47
This class defines a generic interface for controlling a simple PWM output signal.
Definition Pwm.h:35
This concrete class implements MApp the duty cycles the heating equipment based on command arguments.
Definition Api.h:32
uint32_t m_timeMarkerMs
Time marker for the duty cycle.
Definition Api.h:108
void stop_() noexcept
See Cpl::MApp::Api.
unsigned m_maxCycles
Max Repeat count.
Definition Api.h:102
Api(Cpl::Container::Map< MAppApi > &mappList, Cpl::Dm::MailboxServer &myMbox, Driver::DIO::Pwm &heaterPWMDriver, Driver::DIO::Pwm &fanPWMDriver)
Constructor.
void expired(void) noexcept
Timer expired callback.
bool m_inOnCycle
Duty Cycle state.
Definition Api.h:111
bool start_(char *args) noexcept
See Cpl::MApp::Api.
Driver::DIO::Pwm & m_heaterDriver
Driver.
Definition Api.h:84
bool m_firstCycle
Flag for initial cycle.
Definition Api.h:114
void intialize_() noexcept
See Cpl::MApp::Api.
bool parse(char *args) noexcept
Helper method to parse the 'command line' options.
uint32_t m_offTimeMs
Off time (in milliseconds)
Definition Api.h:99
Driver::DIO::Pwm & m_fanDriver
Driver.
Definition Api.h:87
uint32_t m_onTimeMs
On time (in milliseconds)
Definition Api.h:96
unsigned m_fanPWM
Fan PWM.
Definition Api.h:93
unsigned m_cycleCount
Repeat count.
Definition Api.h:105
void shutdown_() noexcept
See Cpl::MApp::Api.
unsigned m_heaterPWM
Heater PWM.
Definition Api.h:90
namespace
The 'Eros' namespace is the root name space all of the GM6000 Engineering Test Application specific s...
Definition screens.h:22