GM6000 Digital Heater Controller Branch: main
SDX-1330
In.h
Go to the documentation of this file.
1#ifndef Driver_DIO_In_h_
2#define Driver_DIO_In_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 DriverDioInPinConfig_T DriverDioInPinConfig_T_MAP
19
20
21///
22namespace Driver {
23///
24namespace DIO {
25
26/** This class defines a generic interface for sampling a single Digital Input
27 signal.
28
29 The 'asserted' Pin state maps to the signal being logically high.
30 */
31class In
32{
33public:
34 /** Constructor. Note: the 'pinConfig' struct MUST stay in scope as long
35 as the driver is in scope.
36 */
37 In( DriverDioInPinConfig_T pinConfig, bool assertedHigh = true );
38
39public:
40 /** Starts the driver.
41 Returns false if an error was encountered
42 */
43 bool start();
44
45 /** Stops the driver.
46 */
47 void stop();
48
49public:
50 /** Returns the current input value. A true value indicates that the
51 signal is asserted state
52 */
53 bool sample() const;
54
55 /// Returns true if the logical asserted state maps to a physical high signal
56 inline bool isAssertedHigh() const
57 {
58 return m_assertedHigh;
59 }
60
61protected:
62 /// PIN info
64
65 /// Polarity of the output ping
67
68 /// Started flag
70};
71
72} // End namespace(s)
73}
74
75/*--------------------------------------------------------------------------*/
76#endif // end header latch
#define DriverDioInPinConfig_T
Defer the definition of the pin configuration to the application's 'platform'.
Definition In.h:18
This class defines a generic interface for sampling a single Digital Input signal.
Definition In.h:32
void stop()
Stops the driver.
bool isAssertedHigh() const
Returns true if the logical asserted state maps to a physical high signal.
Definition In.h:56
bool m_started
Started flag.
Definition In.h:69
In(DriverDioInPinConfig_T pinConfig, bool assertedHigh=true)
Constructor.
bool m_assertedHigh
Polarity of the output ping.
Definition In.h:66
bool sample() const
Returns the current input value.
bool start()
Starts the driver.
DriverDioInPinConfig_T m_pin
PIN info.
Definition In.h:63
namespace