GM6000 Digital Heater Controller Branch: main
SDX-1330
Out.h
Go to the documentation of this file.
1#ifndef Driver_DIO_Out_h_
2#define Driver_DIO_Out_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_map.h"
16
17/// Defer the definition of the pin configuration to the application's 'platform'
18#define DriverDioOutPinConfig_T DriverDioOutPinConfig_T_MAP
19
20
21///
22namespace Driver {
23///
24namespace DIO {
25
26/** This class defines a generic interface for controlling a single Digital output
27 signal.
28
29 The 'asserted' Pin state maps to the signal being logically high.
30 */
31class Out
32{
33public:
34 /** Constructor. Note: the 'pinConfig' struct MUST stay in scope as long
35 as the driver is in scope.
36 */
37 Out( DriverDioOutPinConfig_T pinConfig, bool assertedHigh = true );
38
39public:
40 /** Starts the driver.
41 Returns false if an error was encountered
42 */
43 bool start( bool initialState );
44
45 /** Stops the driver, places the output into a 'safe' state. The safe state
46 is defined by the platform
47 */
48 void stop();
49
50public:
51 /** Returns the current commanded state of the output DO signal. A true
52 value indicates that the signal is asserted state
53 */
54 bool getOutput() const;
55
56 /** Sets the logical state of the output signal
57 */
58 void setOutput( bool asserted );
59
60 /// Convenience method
61 inline void assertOutput()
62 {
63 setOutput( true );
64 }
65
66 /// Convenience method
67 inline void deassertOutput()
68 {
69 return setOutput( false );
70 }
71
72 /// Returns true if the logical asserted state maps to a physical high signal
73 inline bool isAssertedHigh() const
74 {
75 return m_assertedHigh;
76 }
77
78protected:
79 /// PIN info
81
82 /// Polarity of the output ping
84
85 /// Started flag
87};
88
89} // End namespace(s)
90}
91
92/*--------------------------------------------------------------------------*/
93#endif // end header latch
#define DriverDioOutPinConfig_T
Defer the definition of the pin configuration to the application's 'platform'.
Definition Out.h:18
This class defines a generic interface for controlling a single Digital output signal.
Definition Out.h:32
void assertOutput()
Convenience method.
Definition Out.h:61
void stop()
Stops the driver, places the output into a 'safe' state.
Out(DriverDioOutPinConfig_T pinConfig, bool assertedHigh=true)
Constructor.
DriverDioOutPinConfig_T m_pin
PIN info.
Definition Out.h:80
void deassertOutput()
Convenience method.
Definition Out.h:67
bool start(bool initialState)
Starts the driver.
bool getOutput() const
Returns the current commanded state of the output DO signal.
void setOutput(bool asserted)
Sets the logical state of the output signal.
bool m_assertedHigh
Polarity of the output ping.
Definition Out.h:83
bool m_started
Started flag.
Definition Out.h:86
bool isAssertedHigh() const
Returns true if the logical asserted state maps to a physical high signal.
Definition Out.h:73
namespace