GM6000 Digital Heater Controller Branch: main
SDX-1330
Api.h
Go to the documentation of this file.
1#ifndef Ajax_Heating_Io_Api_h_
2#define Ajax_Heating_Io_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-2023 John T. Taylor
10*
11* Redistributions of the source code must retain the above copyright notice.
12*----------------------------------------------------------------------------*/
13/** @file */
14
15#include "colony_config.h"
17#include "Cpl/Itc/CloseSync.h"
18#include "Cpl/System/Timer.h"
20#include "Driver/DIO/Pwm.h"
21#include "Driver/DIO/In.h"
22#include "Cpl/Dm/Mp/Uint32.h"
23
24/// Periodic interval (in milliseconds) for sampling/outputting hardware signals
25#ifndef OPTION_AJAX_HEATING_IO_ALGO_INTERVAL_MS
26#define OPTION_AJAX_HEATING_IO_ALGO_INTERVAL_MS (OPTION_AJAX_HEATING_SUPERVISOR_ALGO_INTERVAL_MS/4)
27#endif
28
29///
30namespace Ajax {
31///
32namespace Heating {
33///
34namespace Io {
35
36/** This class is responsible for 'translating' physical hardware signal
37 to/from model point values. The implementation assumes the
38 existence of the following MP:
39
40 - cmdHeaterPWM
41 - cmdFanPWM
42 - hwSafetyLimit
43 */
45{
46public:
47 /// Constructor
49 Driver::DIO::Pwm& driverHeaterPwm,
50 Driver::DIO::Pwm& driverFanPwm,
51 Driver::DIO::In& driverHwSafetyIn
52 ) noexcept;
53
54public:
55 /// This method starts the supervisor (See Cpl::Itc::OpenSync)
56 void request( OpenMsg& msg );
57
58 /// This method stops the supervisor (See Cpl::Itc::CloseSync)
59 void request( CloseMsg& msg );
60
61protected:
62 /// Change notification
64
65 /// Change notification
66 void fanPWMChanged( Cpl::Dm::Mp::Uint32& mp, Cpl::Dm::SubscriberApi& clientObserver ) noexcept;
67
68 /// See Cpl::System::Timer (timer expired callback)
69 void expired() noexcept;
70
71protected:
72 /// Helper method than reads/writes the hardware
73 void intervalExpired() noexcept;
74
75protected:
76 /// Observer for change notification
77 Cpl::Dm::SubscriberComposer<Api, Cpl::Dm::Mp::Uint32> m_obHeaterPWM;
78
79 /// Observer for change notification
80 Cpl::Dm::SubscriberComposer<Api, Cpl::Dm::Mp::Uint32> m_obFanPWM;
81
82 /// Driver handle
84
85 /// Driver handle
87
88 /// Driver handle
90
91 /// Period time marker
92 uint32_t m_timeMarker;
93
94 /// Flag for initial execution pass
96
97 /// Open state
99};
100
101
102} // end namespaces
103}
104}
105#endif // end header latch
106
This class is responsible for 'translating' physical hardware signal to/from model point values.
Definition Api.h:45
void fanPWMChanged(Cpl::Dm::Mp::Uint32 &mp, Cpl::Dm::SubscriberApi &clientObserver) noexcept
Change notification.
Driver::DIO::In & m_driverHwSafetyIn
Driver handle.
Definition Api.h:89
uint32_t m_timeMarker
Period time marker.
Definition Api.h:92
void intervalExpired() noexcept
Helper method than reads/writes the hardware.
bool m_opened
Open state.
Definition Api.h:98
Driver::DIO::Pwm & m_driverHeaterPwm
Driver handle.
Definition Api.h:83
Driver::DIO::Pwm & m_driverFanPwm
Driver handle.
Definition Api.h:86
void request(OpenMsg &msg)
This method starts the supervisor (See Cpl::Itc::OpenSync)
Api(Cpl::Dm::MailboxServer &myMbox, Driver::DIO::Pwm &driverHeaterPwm, Driver::DIO::Pwm &driverFanPwm, Driver::DIO::In &driverHwSafetyIn) noexcept
Constructor.
void expired() noexcept
See Cpl::System::Timer (timer expired callback)
Cpl::Dm::SubscriberComposer< Api, Cpl::Dm::Mp::Uint32 > m_obFanPWM
Observer for change notification.
Definition Api.h:80
void request(CloseMsg &msg)
This method stops the supervisor (See Cpl::Itc::CloseSync)
void heaterPWMChanged(Cpl::Dm::Mp::Uint32 &mp, Cpl::Dm::SubscriberApi &clientObserver) noexcept
Change notification.
Cpl::Dm::SubscriberComposer< Api, Cpl::Dm::Mp::Uint32 > m_obHeaterPWM
Observer for change notification.
Definition Api.h:77
bool m_firstExecution
Flag for initial execution pass.
Definition Api.h:95
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 uint32_t.
Definition Uint32.h:43
This abstract class defines the Subscriber interface - for change notifications - to a Model Points d...
Definition SubscriberApi.h:34
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 defines a generic interface for sampling a single Digital Input signal.
Definition In.h:32
This class defines a generic interface for controlling a simple PWM output signal.
Definition Pwm.h:35
The 'Ajax' namespace is the root name space all GM6000 application specific source code.
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20
namespace
Encapsulate all Model Points in the 'mp' namespace to prevent polluting the global name space.
Definition ModelPoints.h:30