Lines Matching full:data
25 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
152 * @brief Function for reading data from QSPI memory.
157 * until operation data is still being read.
159 * and reading of data are finished.
162 * @param[in] rx_buffer_length Size of the data to read.
168 * @retval NRFX_ERROR_INVALID_ADDR If the provided buffer is not placed in the Data RAM region.
175 * @brief Function for writing data to QSPI memory.
180 * until operation data is still being sent.
182 * and sending of operation data are finished.
185 …* Remember that an incoming event signalizes only that data was sent to the memory device and the …
189 * @param[in] tx_buffer_length Size of the data to write.
195 * @retval NRFX_ERROR_INVALID_ADDR If the provided buffer is not placed in the Data RAM region.
207 * until operation data is still being sent.
209 * and sending of operation data are finished.
212 …* Remember that an incoming event signalizes only that data was sent to the memory device and the …
215 * @param[in] length Size of data to erase. See @ref nrf_qspi_erase_len_t.
245 …* @brief Function for sending operation code, sending data, and receiving data from the memory dev…
247 * Use this function to transfer configuration data to memory and to receive data from memory.
252 …* @param[in] p_tx_buffer Pointer to the array with data to send. Can be NULL if only opcode is tr…
253 …* @param[out] p_rx_buffer Pointer to the array for data to receive. Can be NULL if there is nothin…
263 …* @brief Function for sending operation code and data to the memory device with simpler configurat…
265 * Use this function to transfer configuration data to memory and to receive data from memory.
269 * @param[in] length Length of the data to send and opcode. See @ref nrf_qspi_cinstr_len_t.
270 * @param[in] p_tx_buffer Pointer to input data array.