Lines Matching full:sense
112 * @brief Enumerator used for selecting the pin to sense high or low level on the pin input.
116 NRF_GPIO_PIN_NOSENSE = GPIO_PIN_CNF_SENSE_Disabled, ///< Pin sense level disabled.
117 NRF_GPIO_PIN_SENSE_LOW = GPIO_PIN_CNF_SENSE_Low, ///< Pin sense low level.
118 NRF_GPIO_PIN_SENSE_HIGH = GPIO_PIN_CNF_SENSE_High, ///< Pin sense high level.
130 …* Sense capability on the pin is disabled and input is disconnected from the buffer as the p…
145 …* Sense capability on the pin is disabled and input is connected to buffer so that the GPIO…
161 * @param sense Pin sensing mechanism.
169 nrf_gpio_pin_sense_t sense);
177 …* @note Sense capability on the pin is disabled and input is disconnected from the buffer as the …
188 …* @note Sense capability on the pin is disabled and input is connected to buffer so that the GPIO…
218 …* Sense capability on the pin is configurable and input is connected to buffer so that the …
222 * @param sense_config Sense level of the pin (no sense, sense low, or sense high).
229 * @brief Function for configuring sense level for the given GPIO.
232 * @param sense_config Sense configuration.
311 * @brief Function for reading the sense configuration of a GPIO pin.
315 * @retval Sense configuration.
513 nrf_gpio_pin_sense_t sense) in nrf_gpio_cfg() argument
521 | ((uint32_t)sense << GPIO_PIN_CNF_SENSE_Pos); in nrf_gpio_cfg()