GM6000 Digital Heater Controller Branch: main
SDX-1330
InOut.h
Go to the documentation of this file.
1#ifndef Driver_DIO_InOut_h_
2#define Driver_DIO_InOut_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-2022 John T. Taylor
10*
11* Redistributions of the source code must retain the above copyright notice.
12*----------------------------------------------------------------------------*/
13/** @file */
14
15#include <stdint.h>
16#include <stdlib.h>
17
18///
19namespace Driver {
20///
21namespace DIO {
22
23/** This class defines a generic interface for controlling N Digital inputs
24 and M Digital outputs. This driver is useful when the Application wants to
25 access Inputs and Output using a zero based index.
26
27 The driver interface is a Singleton interface (i.e. there is only one
28 'instance' of the driver).
29
30 The maximum 'N' and 'M' values are defined by the concrete driver
31 instance.
32
33 The 'asserted' Pin state maps to the signal being physical high.
34 */
35class InOut
36{
37public:
38 /// Configuration Options
39 struct Config_T
40 {
41 size_t pin; //!< GPIO pin identifier
42 size_t blob; //!< Additional Platform specific options
43 };
44
45public:
46 /** Starts the driver actively sampling and outputting signals.
47
48 The 'inputCfg[]' and 'outputCfg[]' array must stay in the scope while
49 the driver is started, i.e. can NOT go out of scope till stop() has
50 been called.
51
52 Returns false if an error was encountered (e.g. exceeded max number of
53 Inputs/Outputs signals)
54 */
55 static bool start( uint8_t numInputs,
56 const Config_T inputCfg[],
57 uint8_t numOutputs,
58 const Config_T outputCfg[] );
59
60 /** Stops the driver from sampling inputs, and places all of the output
61 into their de-asserted state
62 */
63 static void stop();
64
65public:
66 /** Returns (via the 'assertedOut' argument) the current commanded state of
67 the specified DO signal. A true value indicates that the signal
68 is asserted state
69
70 'outputIndex' is a zero-based index.
71
72 The method returns false if there is error or the 'outputIndex' argument
73 is out of range.
74 */
75 static bool getOutput( uint8_t outputIndex, bool& assertedOut );
76
77 /** Sets the state of the specified DO signal
78
79 The method returns false if there is error or the 'outputIndex' argument
80 is out of range.
81 */
82 static bool setOutput( uint8_t outputIndex, bool asserted );
83
84 /// Convenience method
85 static inline bool assertOutput( uint8_t outputIndex )
86 {
87 return setOutput( outputIndex, true );
88 }
89
90 /// Convenience method
91 static inline bool deassertOutput( uint8_t outputIndex )
92 {
93 return setOutput( outputIndex, false );
94 }
95
96public:
97 /** Returns (via the 'assertedOut' argument) the current DI signal state. A
98 true values indicates that the signal is asserted.
99
100 'inputIndex' is a zero-based index.
101
102 The method returns false if there is error or the 'outputIndex' argument
103 is out of range.
104 */
105 static bool getInput( uint8_t inputIndex, bool& assertedOut );
106};
107
108} // End namespace(s)
109}
110
111/*--------------------------------------------------------------------------*/
112#endif // end header latch
This class defines a generic interface for controlling N Digital inputs and M Digital outputs.
Definition InOut.h:36
static bool start(uint8_t numInputs, const Config_T inputCfg[], uint8_t numOutputs, const Config_T outputCfg[])
Starts the driver actively sampling and outputting signals.
static bool setOutput(uint8_t outputIndex, bool asserted)
Sets the state of the specified DO signal.
static bool getOutput(uint8_t outputIndex, bool &assertedOut)
Returns (via the 'assertedOut' argument) the current commanded state of the specified DO signal.
static bool deassertOutput(uint8_t outputIndex)
Convenience method.
Definition InOut.h:91
static bool assertOutput(uint8_t outputIndex)
Convenience method.
Definition InOut.h:85
static bool getInput(uint8_t inputIndex, bool &assertedOut)
Returns (via the 'assertedOut' argument) the current DI signal state.
size_t blob
Additional Platform specific options.
Definition InOut.h:42
size_t pin
GPIO pin identifier.
Definition InOut.h:41
static void stop()
Stops the driver from sampling inputs, and places all of the output into their de-asserted state.
Configuration Options.
Definition InOut.h:40
namespace