Home
last modified time | relevance | path

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

/Zephyr-latest/tests/drivers/pinctrl/nrf/src/
Dmain.c31 zassert_equal(NRF_GET_PIN(scfg->pins[0]), 1U); in ZTEST()
37 zassert_equal(NRF_GET_PIN(scfg->pins[1]), 2U); in ZTEST()
40 zassert_equal(NRF_GET_PIN(scfg->pins[2]), NRF_PIN_DISCONNECTED); in ZTEST()
46 zassert_equal(NRF_GET_PIN(scfg->pins[3]), 3U); in ZTEST()
52 zassert_equal(NRF_GET_PIN(scfg->pins[4]), 4U); in ZTEST()
58 zassert_equal(NRF_GET_PIN(scfg->pins[5]), 5U); in ZTEST()
64 zassert_equal(NRF_GET_PIN(scfg->pins[6]), 38U); in ZTEST()
/Zephyr-latest/soc/nordic/common/
Dpinctrl_soc.h155 #define NRF_GET_PIN(pincfg) (((pincfg) >> NRF_PIN_POS) & NRF_PIN_MSK) macro
/Zephyr-latest/soc/nordic/nrf54h/gpd/
Dgpd.c284 uint32_t pin = NRF_GET_PIN(state->pins[i]); in nrf_gpd_retain_pins_set()
/Zephyr-latest/drivers/pinctrl/
Dpinctrl_nrf.c112 uint32_t psel = NRF_GET_PIN(pins[i]); in pinctrl_configure_pins()