Lines Matching full:sample
133 …, EVENTS_DMA.END), ///< The PDM has written the last sample specified by MAXCNT (or the last sampl…
135 …, EVENTS_END), ///< The PDM has written the last sample specified by MAXCNT (or the last sampl…
171 /** @brief PDM ratio between PDM_CLK and output sample rate. */
200 …NRF_PDM_MODE_STEREO = PDM_MODE_OPERATION_Stereo, ///< Sample and store one pair (Left + Right) of…
201 …NRF_PDM_MODE_MONO = PDM_MODE_OPERATION_Mono ///< Sample and store two successive Left sample…
503 * @brief Function for setting the PDM sample buffer.
516 * @brief Function for getting the current PDM sample buffer address.
520 * @return Pointer to the current sample buffer.
526 * @brief Function for setting ratio between PDM_CLK and output sample rate.
529 * @param[in] ratio Ratio between PDM_CLK and output sample rate.
728 p_reg->SAMPLE.PTR = (uint32_t)p_buffer; in nrf_pdm_buffer_set()
730 p_reg->SAMPLE.MAXCNT = num * sizeof(int16_t); in nrf_pdm_buffer_set()
732 p_reg->SAMPLE.MAXCNT = num; in nrf_pdm_buffer_set()
738 return (uint32_t *)p_reg->SAMPLE.PTR; in nrf_pdm_buffer_get()