Struct esp_idf_sys::esp_flash_os_functions_t
source · #[repr(C)]pub struct esp_flash_os_functions_t {
pub start: Option<unsafe extern "C" fn(arg: *mut c_void) -> esp_err_t>,
pub end: Option<unsafe extern "C" fn(arg: *mut c_void) -> esp_err_t>,
pub region_protected: Option<unsafe extern "C" fn(arg: *mut c_void, start_addr: usize, size: usize) -> esp_err_t>,
pub delay_us: Option<unsafe extern "C" fn(arg: *mut c_void, us: u32) -> esp_err_t>,
pub get_temp_buffer: Option<unsafe extern "C" fn(arg: *mut c_void, reqest_size: usize, out_size: *mut usize) -> *mut c_void>,
pub release_temp_buffer: Option<unsafe extern "C" fn(arg: *mut c_void, temp_buf: *mut c_void)>,
pub check_yield: Option<unsafe extern "C" fn(arg: *mut c_void, chip_status: u32, out_request: *mut u32) -> esp_err_t>,
pub yield_: Option<unsafe extern "C" fn(arg: *mut c_void, out_status: *mut u32) -> esp_err_t>,
pub get_system_time: Option<unsafe extern "C" fn(arg: *mut c_void) -> i64>,
pub set_flash_op_status: Option<unsafe extern "C" fn(op_status: u32)>,
}
Expand description
@brief OS-level integration hooks for accessing flash chips inside a running OS
It’s in the public header because some instances should be allocated statically in the startup code. May be updated according to hardware version and new flash chip feature requirements, shouldn’t be treated as public API.
For advanced developers, you may replace some of them with your implementations at your own risk.
Fields§
§start: Option<unsafe extern "C" fn(arg: *mut c_void) -> esp_err_t>
Called before commencing any flash operation. Does not need to be recursive (ie is called at most once for each call to ‘end’).
end: Option<unsafe extern "C" fn(arg: *mut c_void) -> esp_err_t>
Called after completing any flash operation.
region_protected: Option<unsafe extern "C" fn(arg: *mut c_void, start_addr: usize, size: usize) -> esp_err_t>
Called before any erase/write operations to check whether the region is limited by the OS
delay_us: Option<unsafe extern "C" fn(arg: *mut c_void, us: u32) -> esp_err_t>
Delay for at least ‘us’ microseconds. Called in between ‘start’ and ‘end’.
get_temp_buffer: Option<unsafe extern "C" fn(arg: *mut c_void, reqest_size: usize, out_size: *mut usize) -> *mut c_void>
Called for get temp buffer when buffer from application cannot be directly read into/write from.
release_temp_buffer: Option<unsafe extern "C" fn(arg: *mut c_void, temp_buf: *mut c_void)>
Called for release temp buffer.
check_yield: Option<unsafe extern "C" fn(arg: *mut c_void, chip_status: u32, out_request: *mut u32) -> esp_err_t>
Yield to other tasks. Called during erase operations. @return ESP_OK means yield needs to be called (got an event to handle), while ESP_ERR_TIMEOUT means skip yield.
yield_: Option<unsafe extern "C" fn(arg: *mut c_void, out_status: *mut u32) -> esp_err_t>
Yield to other tasks. Called during erase operations.
get_system_time: Option<unsafe extern "C" fn(arg: *mut c_void) -> i64>
Called for get system time.
set_flash_op_status: Option<unsafe extern "C" fn(op_status: u32)>
Call to set flash operation status
Trait Implementations§
source§impl Clone for esp_flash_os_functions_t
impl Clone for esp_flash_os_functions_t
source§fn clone(&self) -> esp_flash_os_functions_t
fn clone(&self) -> esp_flash_os_functions_t
1.0.0§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for esp_flash_os_functions_t
impl Debug for esp_flash_os_functions_t
source§impl Default for esp_flash_os_functions_t
impl Default for esp_flash_os_functions_t
source§fn default() -> esp_flash_os_functions_t
fn default() -> esp_flash_os_functions_t
impl Copy for esp_flash_os_functions_t
Auto Trait Implementations§
impl Freeze for esp_flash_os_functions_t
impl RefUnwindSafe for esp_flash_os_functions_t
impl Send for esp_flash_os_functions_t
impl Sync for esp_flash_os_functions_t
impl Unpin for esp_flash_os_functions_t
impl UnwindSafe for esp_flash_os_functions_t
Blanket Implementations§
§impl<T> Any for Twhere
T: 'static + ?Sized,
impl<T> Any for Twhere
T: 'static + ?Sized,
§impl<T> Borrow<T> for Twhere
T: ?Sized,
impl<T> Borrow<T> for Twhere
T: ?Sized,
§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)§impl<T> CloneToUninit for Twhere
T: Copy,
impl<T> CloneToUninit for Twhere
T: Copy,
§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)