![]() |
GM6000 Digital Heater Controller Branch: main
SDX-1330
|
Configuration Parameters (Config_T): pin - Not used.
The maximum number of Signals is defined in InOutModelPoints.h blob - Bits 0-1 - Specifies Pull Up/Pull Down options. 00 = None 01 = Pull-up enabled 10 = Pull-down enabled
Bits 1-31 - Reserved
#include <stdint.h>
Go to the source code of this file.
Namespaces | |
namespace | Driver |
namespace | |
namespace | Driver::DIO |
The 'DIO' namespace provides drivers for Digital Input/Output drivers. | |
namespace | Driver::DIO::Simulated |
The 'Simulated' namespace implements the DIO interface using model points. | |
Variables | |
constexpr size_t | Driver::DIO::Simulated::INOUT_CFG_NO_PULL_UPDOWN = 0x00 |
Magic value for no pull ups. OR'd with other config options. | |
constexpr size_t | Driver::DIO::Simulated::INOUT_CFG_PULL_UP = 0x01 |
Magic value for enabling Pull Up resistor. OR'd with other config options. | |
constexpr size_t | Driver::DIO::Simulated::INOUT_CFG_PULL_DOWN = 0x02 |
Magic value for enabling Pull Down resistor. OR'd with other config options. | |
constexpr size_t | Driver::DIO::Simulated::INOUT_CFG_PULL_UPDOWN_MASK = 0x03 |
Mask for the Pull Up/Down configuration option. | |