Lines Matching full:memory

54 …uint32_t             xip_offset;   /**< Address offset into the external memory for Execute in Pla…
124 * If the busy bit is 1, this indicates issues with the external memory device. As a result,
129 * - Make sure that the memory device does not perform other operations like erasing or writing.
138 * @retval NRFX_ERROR_TIMEOUT If the peripheral cannot connect with external memory.
152 * @brief Function for reading data from QSPI memory.
154 * Write, read, and erase operations check memory device busy state before starting the operation.
155 …* If the memory is busy, the resulting action depends on the mode in which the read operation is u…
163 * @param[in] src_address Address in memory to read from.
175 * @brief Function for writing data to QSPI memory.
177 * Write, read, and erase operations check memory device busy state before starting the operation.
178 …* If the memory is busy, the resulting action depends on the mode in which the write operation is …
183 * To manually control operation execution in the memory device, use @ref nrfx_qspi_mem_busy_check
185 …* Remember that an incoming event signalizes only that data was sent to the memory device and the …
186 * before the write operation checked if memory was busy.
190 * @param[in] dst_address Address in memory to write to.
202 * @brief Function for starting erasing of one memory block - 4KB, 64KB, or the whole chip.
204 * Write, read, and erase operations check memory device busy state before starting the operation.
205 …* If the memory is busy, the resulting action depends on the mode in which the erase operation is …
210 * To manually control operation execution in the memory device, use @ref nrfx_qspi_mem_busy_check
212 …* Remember that an incoming event signalizes only that data was sent to the memory device and the …
213 * before the erase operation checked if memory was busy.
216 * @param[in] start_address Memory address to start erasing. If chip erase is performed, address
236 * @brief Function for getting the current driver status and status byte of memory device with
239 * @retval NRFX_SUCCESS If the driver and memory are ready to handle a new operation.
240 * @retval NRFX_ERROR_BUSY If the driver or memory currently handle another operation.
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.
248 * Pointers can be addresses from flash memory.
256 * @retval NRFX_ERROR_TIMEOUT If the external memory is busy or there are connection issues.
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.