#[repr(C)]pub struct sd_mbr_command_copy_sd_t {
pub src: *mut u32,
pub dst: *mut u32,
pub len: u32,
}
Expand description
@brief This command copies part of a new SoftDevice
The destination area is erased before copying. If dst is in the middle of a flash page, that whole flash page will be erased. If (dst+len) is in the middle of a flash page, that whole flash page will be erased.
The user of this function is responsible for setting the BPROT registers.
@retval ::NRF_SUCCESS indicates that the contents of the memory blocks where copied correctly. @retval ::NRF_ERROR_INTERNAL indicates that the contents of the memory blocks where not verified correctly after copying.
Fields§
§src: *mut u32
< Pointer to the source of data to be copied.
dst: *mut u32
< Pointer to the destination where the content is to be copied.
len: u32
< Number of 32 bit words to copy. Must be a multiple of @ref MBR_PAGE_SIZE_IN_WORDS words.
Trait Implementations§
source§impl Clone for sd_mbr_command_copy_sd_t
impl Clone for sd_mbr_command_copy_sd_t
source§fn clone(&self) -> sd_mbr_command_copy_sd_t
fn clone(&self) -> sd_mbr_command_copy_sd_t
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read more