Expand description
Component for isolated non-volatile storage Drivers.
This provides one component, IsolatedNonvolatileStorageComponent, which provides a system call interface to isolated non-volatile storage.
This differs from NonvolatileStorageComponent in that it provides isolation between apps. Each app has it’s own storage address space (that starts at 0) which doesn’t interfere with other apps.
§Usage
let nonvolatile_storage = components::isolated_nonvolatile_storage::IsolatedNonvolatileStorageComponent::new(
board_kernel,
&sam4l::flashcalw::FLASH_CONTROLLER,
0x60000,
0x20000,
)
.finalize(components::isolated_nonvolatile_storage_component_static!(
sam4l::flashcalw::FLASHCALW
));