Home
last modified time | relevance | path

Searched refs:cnf (Results 1 – 1 of 1) sorted by relevance

/hal_nordic-latest/nrfx/hal/
Dnrf_gpio.h988 uint32_t cnf = reg->PIN_CNF[pin_number]; in nrf_gpio_cfg() local
1002 cnf &= ~to_update; in nrf_gpio_cfg()
1003 cnf |= ((uint32_t)dir << GPIO_PIN_CNF_DIR_Pos) | in nrf_gpio_cfg()
1013 reg->PIN_CNF[pin_number] = cnf; in nrf_gpio_cfg()
1024 uint32_t cnf = reg->PIN_CNF[pin_number]; in nrf_gpio_reconfigure() local
1036 cnf &= ~to_update; in nrf_gpio_reconfigure()
1037 cnf |= ((uint32_t)(p_dir ? *p_dir : 0) << GPIO_PIN_CNF_DIR_Pos) | in nrf_gpio_reconfigure()
1047 reg->PIN_CNF[pin_number] = cnf; in nrf_gpio_reconfigure()
1063 uint32_t cnf = ((uint32_t)NRF_GPIO_PIN_DIR_OUTPUT << GPIO_PIN_CNF_DIR_Pos) | in nrf_gpio_port_pin_output_set() local
1072 p_reg->PIN_CNF[pin_number] = cnf; in nrf_gpio_port_pin_output_set()
[all …]