// pep_x.h
typedef enum _GPIO_PIN_CONFIG_TYPE {
PullDefault,
PullUp,
PullDown,
PullNone
} GPIO_PIN_CONFIG_TYPE;
View the official Windows Driver Kit DDI reference// pepfx.h
typedef enum _GPIO_PIN_CONFIG_TYPE {
PullDefault,
PullUp,
PullDown,
PullNone
} GPIO_PIN_CONFIG_TYPE;
View the official Windows Driver Kit DDI referenceNo description available.
The GPIO_PIN_CONFIG_TYPE enumeration describes a connection IO resource.
PullDefaultIndicates that no configuration is applied to this pin.
PullUpIndicates that this pin is configured to use a pull-up resistor.
PullDownIndicates that this pin is configured to use a pull-down resistor.
PullNoneIndicates that this pin is not configured to use a pull-up or pull-down resistor.
The GPIO_PIN_CONFIG_TYPE enumeration describes a connection IO resource.
PullDefaultIndicates that no configuration is applied to this pin.
PullUpIndicates that this pin is configured to use a pull-up resistor.
PullDownIndicates that this pin is configured to use a pull-down resistor.
PullNoneIndicates that this pin is not configured to use a pull-up or pull-down resistor.