1#ifndef Driver_DIO_Out_h_
2#define Driver_DIO_Out_h_
15#include "colony_map.h"
18#define DriverDioOutPinConfig_T DriverDioOutPinConfig_T_MAP
43 bool start(
bool initialState );
#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