Lines Matching full:input

73     NRF_GPIO_PIN_DIR_INPUT  = GPIO_PIN_CNF_DIR_Input, ///< Input.
78 * @brief Connection of input buffer.
82 NRF_GPIO_PIN_INPUT_CONNECT = GPIO_PIN_CNF_INPUT_Connect, ///< Connect input buffer.
83 NRF_GPIO_PIN_INPUT_DISCONNECT = GPIO_PIN_CNF_INPUT_Disconnect ///< Disconnect input buffer.
112 * @brief Enumerator used for selecting the pin to sense high or low level on the pin input.
130 …* Sense capability on the pin is disabled and input is disconnected from the buffer as the p…
135 …* @brief Function for configuring the GPIO pin range as input pins with given initial value set, h…
136 * This function can be used to configure pin range as simple input.
144 * @note For configuring only one pin as input, use @ref nrf_gpio_cfg_input.
145 …* Sense capability on the pin is disabled and input is connected to buffer so that the GPIO…
158 * @param input Connect or disconnect the input buffer.
166 nrf_gpio_pin_input_t input,
177 …* @note Sense capability on the pin is disabled and input is disconnected from the buffer as the …
182 * @brief Function for configuring the given GPIO pin number as input, hiding inner details.
183 * This function can be used to configure a pin as simple input.
188 …* @note Sense capability on the pin is disabled and input is connected to buffer so that the GPIO…
200 * @brief Function for configuring the given GPIO pin number as a watcher. Only input is connected.
208 * @brief Function for disconnecting input for the given GPIO.
216 * @brief Function for configuring the given GPIO pin number as input, hiding inner details.
217 * This function can be used to configure pin range as simple input.
218 …* Sense capability on the pin is configurable and input is connected to buffer so that the …
290 * @brief Function for reading the input level of a GPIO pin.
292 * Note that the pin must have input connected for the value
297 * @return 0 if the pin input level is low. Positive value if the pin is high.
347 * @brief Function for setting input direction on selected pins on a given port.
350 * @param in_mask Mask specifying the pins to set as input.
374 * @brief Function for reading the input signals of GPIO pins on a given port.
378 * @retval Port input values.
510 nrf_gpio_pin_input_t input, in nrf_gpio_cfg() argument
518 | ((uint32_t)input << GPIO_PIN_CNF_INPUT_Pos) in nrf_gpio_cfg()