Synopsis
typedef int (*libmem_driver_page_write_fn_t)(libmem_driver_handle_t *h, uint8_t *dest, const uint8_t *src);
Description

libmem_driver_page_write_fn_t is a function pointer to a function implementing a paged write operation.

h — A pointer to the handle of the LIBMEM driver.

dest — A pointer to the start address of the page to write to.

src — A pointer to the address to copy the page data from.

libmem_driver_page_write_fn_t returns — The LIBMEM status result. If any value other than LIBMEM_STATUS_SUCCESS is returned from this function the libmem_driver_paged_write or libmem_driver_paged_write_fill functions will terminate and return the response.