![]() |
GM6000 Digital Heater Controller Branch: main
SDX-1330
|
This class defines a generic interface for sampling a single Digital Input signal. More...
This class defines a generic interface for sampling a single Digital Input signal.
The 'asserted' Pin state maps to the signal being logically high.
#include <In.h>
Public Member Functions | |
In (DriverDioInPinConfig_T pinConfig, bool assertedHigh=true) | |
Constructor. | |
bool | start () |
Starts the driver. | |
void | stop () |
Stops the driver. | |
bool | sample () const |
Returns the current input value. | |
bool | isAssertedHigh () const |
Returns true if the logical asserted state maps to a physical high signal. | |
Protected Attributes | |
DriverDioInPinConfig_T | m_pin |
PIN info. | |
bool | m_assertedHigh |
Polarity of the output ping. | |
bool | m_started |
Started flag. | |
Driver::DIO::In::In | ( | DriverDioInPinConfig_T | pinConfig, |
bool | assertedHigh = true |
||
) |
Constructor.
Note: the 'pinConfig' struct MUST stay in scope as long as the driver is in scope.
|
inline |
Returns true if the logical asserted state maps to a physical high signal.
bool Driver::DIO::In::sample | ( | ) | const |
Returns the current input value.
A true value indicates that the signal is asserted state
bool Driver::DIO::In::start | ( | ) |
Starts the driver.
Returns false if an error was encountered
void Driver::DIO::In::stop | ( | ) |
Stops the driver.
|
protected |
Polarity of the output ping.
|
protected |
PIN info.
|
protected |
Started flag.