1#ifndef Eros_Test_Cycle_Api_h_
2#define Eros_Test_Cycle_Api_h_
9#include "colony_config.h"
16#ifndef OPTION_EROS_TEST_CYCLE_INTERVAL_MS
17#define OPTION_EROS_TEST_CYCLE_INTERVAL_MS 1000
34 static constexpr const char* MAPP_NAME =
"cycle";
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";
51 static constexpr const char* DESCRIPTION =
"Duty Cycles the Heating equipment.";
76 bool parse(
char* args ) noexcept;
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
The 'Eros' namespace is the root name space all of the GM6000 Engineering Test Application specific s...
Definition screens.h:22