Lines Matching refs:p_pins
401 nrf_qspi_pins_t const * p_pins);
458 nrf_qspi_pins_t * p_pins);
792 NRF_STATIC_INLINE void nrf_qspi_pins_set(NRF_QSPI_Type * p_reg, nrf_qspi_pins_t const * p_pins) in nrf_qspi_pins_set() argument
794 p_reg->PSEL.SCK = NRF_QSPI_PIN_VAL(p_pins->sck_pin); in nrf_qspi_pins_set()
795 p_reg->PSEL.CSN = NRF_QSPI_PIN_VAL(p_pins->csn_pin); in nrf_qspi_pins_set()
796 p_reg->PSEL.IO0 = NRF_QSPI_PIN_VAL(p_pins->io0_pin); in nrf_qspi_pins_set()
797 p_reg->PSEL.IO1 = NRF_QSPI_PIN_VAL(p_pins->io1_pin); in nrf_qspi_pins_set()
798 p_reg->PSEL.IO2 = NRF_QSPI_PIN_VAL(p_pins->io2_pin); in nrf_qspi_pins_set()
799 p_reg->PSEL.IO3 = NRF_QSPI_PIN_VAL(p_pins->io3_pin); in nrf_qspi_pins_set()
833 nrf_qspi_pins_t * p_pins) in nrf_qspi_pins_get() argument
835 p_pins->sck_pin = (uint8_t)p_reg->PSEL.SCK; in nrf_qspi_pins_get()
836 p_pins->csn_pin = (uint8_t)p_reg->PSEL.CSN; in nrf_qspi_pins_get()
837 p_pins->io0_pin = (uint8_t)p_reg->PSEL.IO0; in nrf_qspi_pins_get()
838 p_pins->io1_pin = (uint8_t)p_reg->PSEL.IO1; in nrf_qspi_pins_get()
839 p_pins->io2_pin = (uint8_t)p_reg->PSEL.IO2; in nrf_qspi_pins_get()
840 p_pins->io3_pin = (uint8_t)p_reg->PSEL.IO3; in nrf_qspi_pins_get()