Struct capsules_extra::mx25r6435f::MX25R6435F
source · pub struct MX25R6435F<'a, S: SpiMasterDevice<'a> + 'a, P: Pin + 'a, A: Alarm<'a> + 'a> { /* private fields */ }
Implementations§
source§impl<'a, S: SpiMasterDevice<'a> + 'a, P: Pin + 'a, A: Alarm<'a> + 'a> MX25R6435F<'a, S, P, A>
impl<'a, S: SpiMasterDevice<'a> + 'a, P: Pin + 'a, A: Alarm<'a> + 'a> MX25R6435F<'a, S, P, A>
pub fn new( spi: &'a S, alarm: &'a A, txbuffer: &'static mut [u8], rxbuffer: &'static mut [u8], write_protect_pin: Option<&'a P>, hold_pin: Option<&'a P>, ) -> MX25R6435F<'a, S, P, A>
sourcepub fn read_identification(&self) -> Result<(), ErrorCode>
pub fn read_identification(&self) -> Result<(), ErrorCode>
Requests the readout of a 24-bit identification number. This command will cause a debug print when succeeded.
Trait Implementations§
source§impl<'a, S: SpiMasterDevice<'a> + 'a, P: Pin + 'a, A: Alarm<'a> + 'a> AlarmClient for MX25R6435F<'a, S, P, A>
impl<'a, S: SpiMasterDevice<'a> + 'a, P: Pin + 'a, A: Alarm<'a> + 'a> AlarmClient for MX25R6435F<'a, S, P, A>
source§impl<'a, S: SpiMasterDevice<'a> + 'a, P: Pin + 'a, A: Alarm<'a> + 'a> Flash for MX25R6435F<'a, S, P, A>
impl<'a, S: SpiMasterDevice<'a> + 'a, P: Pin + 'a, A: Alarm<'a> + 'a> Flash for MX25R6435F<'a, S, P, A>
§type Page = Mx25r6435fSector
type Page = Mx25r6435fSector
Type of a single flash page for the given implementation.
source§fn read_page(
&self,
page_number: usize,
buf: &'static mut Self::Page,
) -> Result<(), (ErrorCode, &'static mut Self::Page)>
fn read_page( &self, page_number: usize, buf: &'static mut Self::Page, ) -> Result<(), (ErrorCode, &'static mut Self::Page)>
Read a page of flash into the buffer.
source§impl<'a, S: SpiMasterDevice<'a> + 'a, P: Pin + 'a, A: Alarm<'a> + 'a, C: Client<Self>> HasClient<'a, C> for MX25R6435F<'a, S, P, A>
impl<'a, S: SpiMasterDevice<'a> + 'a, P: Pin + 'a, A: Alarm<'a> + 'a, C: Client<Self>> HasClient<'a, C> for MX25R6435F<'a, S, P, A>
source§fn set_client(&self, client: &'a C)
fn set_client(&self, client: &'a C)
Set the client for this flash peripheral. The client will be called
when operations complete.
source§impl<'a, S: SpiMasterDevice<'a> + 'a, P: Pin + 'a, A: Alarm<'a> + 'a> SpiMasterClient for MX25R6435F<'a, S, P, A>
impl<'a, S: SpiMasterDevice<'a> + 'a, P: Pin + 'a, A: Alarm<'a> + 'a> SpiMasterClient for MX25R6435F<'a, S, P, A>
source§fn read_write_done(
&self,
write_buffer: SubSliceMut<'static, u8>,
read_buffer: Option<SubSliceMut<'static, u8>>,
read_write_status: Result<usize, ErrorCode>,
)
fn read_write_done( &self, write_buffer: SubSliceMut<'static, u8>, read_buffer: Option<SubSliceMut<'static, u8>>, read_write_status: Result<usize, ErrorCode>, )
Callback issued when a read/write operation finishes. Read more
Auto Trait Implementations§
impl<'a, S, P, A> !Freeze for MX25R6435F<'a, S, P, A>
impl<'a, S, P, A> !RefUnwindSafe for MX25R6435F<'a, S, P, A>
impl<'a, S, P, A> !Send for MX25R6435F<'a, S, P, A>
impl<'a, S, P, A> !Sync for MX25R6435F<'a, S, P, A>
impl<'a, S, P, A> Unpin for MX25R6435F<'a, S, P, A>
impl<'a, S, P, A> !UnwindSafe for MX25R6435F<'a, S, P, A>
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more