GPIO_PIN_CONFIG_TYPE - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// 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 reference

NtDoc

No description available.

Windows Driver Kit DDI reference (ne-pep_x-_gpio_pin_config_type)

_GPIO_PIN_CONFIG_TYPE enumeration (pep_x.h)

Description

The GPIO_PIN_CONFIG_TYPE enumeration describes a connection IO resource.

Constants

PullDefault

Indicates that no configuration is applied to this pin.

PullUp

Indicates that this pin is configured to use a pull-up resistor.

PullDown

Indicates that this pin is configured to use a pull-down resistor.

PullNone

Indicates that this pin is not configured to use a pull-up or pull-down resistor.


Windows Driver Kit DDI reference (ne-pepfx-_gpio_pin_config_type)

_GPIO_PIN_CONFIG_TYPE enumeration (pepfx.h)

Description

The GPIO_PIN_CONFIG_TYPE enumeration describes a connection IO resource.

Constants

PullDefault

Indicates that no configuration is applied to this pin.

PullUp

Indicates that this pin is configured to use a pull-up resistor.

PullDown

Indicates that this pin is configured to use a pull-down resistor.

PullNone

Indicates that this pin is not configured to use a pull-up or pull-down resistor.