Lines Matching +full:8 +full:- +full:pin
4 * SPDX-License-Identifier: Apache-2.0
10 * @brief nRF-specific GPIO Flags
11 * @defgroup gpio_interface_nrf nRF-specific GPIO Flags
20 * Standard (S) or High (H) drive modes can be applied to both pin levels, 0 or
21 * 1. High drive mode will increase current capabilities of the pin (refer to
24 * When the pin is configured to operate in open-drain mode (wired-and), the
26 * Similarly, when the pin is configured to operate in open-source mode
27 * (wired-or), the drive mode can only be set for the 1 level
30 * The drive flags are encoded in the 8 upper bits of @ref gpio_dt_flags_t as
33 * - Bit 8: Drive mode for '0' (0=Standard, 1=High)
34 * - Bit 9: Drive mode for '1' (0=Standard, 1=High)
45 #define NRF_GPIO_DRIVE_S0 (0U << 8U)
47 #define NRF_GPIO_DRIVE_H0 (1U << 8U)