Lines Matching +full:high +full:- +full:frequency
2 * Copyright (c) 2015 - 2018, Nordic Semiconductor ASA
61 /*lint -save -e30*/
63 /*lint -restore*/
96 NRF_SPI_MODE_0, ///< SCK active high, sample on leading edge of clock.
97 NRF_SPI_MODE_1, ///< SCK active high, sample on trailing edge of clock.
225 * @param[in] frequency SPI frequency.
228 nrf_spi_frequency_t frequency);
269 p_reg->INTENSET = spi_int_mask; in nrf_spi_int_enable()
275 p_reg->INTENCLR = spi_int_mask; in nrf_spi_int_disable()
281 return (bool)(p_reg->INTENSET & spi_int); in nrf_spi_int_enable_check()
286 p_reg->ENABLE = (SPI_ENABLE_ENABLE_Enabled << SPI_ENABLE_ENABLE_Pos); in nrf_spi_enable()
291 p_reg->ENABLE = (SPI_ENABLE_ENABLE_Disabled << SPI_ENABLE_ENABLE_Pos); in nrf_spi_disable()
299 p_reg->PSELSCK = sck_pin; in nrf_spi_pins_set()
300 p_reg->PSELMOSI = mosi_pin; in nrf_spi_pins_set()
301 p_reg->PSELMISO = miso_pin; in nrf_spi_pins_set()
306 p_reg->TXD = data; in nrf_spi_txd_set()
311 return p_reg->RXD; in nrf_spi_rxd_get()
315 nrf_spi_frequency_t frequency) in nrf_spi_frequency_set() argument
317 p_reg->FREQUENCY = frequency; in nrf_spi_frequency_set()
349 p_reg->CONFIG = config; in nrf_spi_configure()