Compare commits
1 Commits
2b9f0a7d53
...
7a525b0107
Author | SHA1 | Date | |
---|---|---|---|
7a525b0107 |
@ -22,7 +22,7 @@ pub fn enable_ram1_scrub(syscfg: &mut pac::Sysconfig, counter_reset: u16) {
|
||||
}
|
||||
|
||||
/// This function enables the SBE related interrupts. The user should also provide a
|
||||
/// `EDAC_SBE` ISR and use [clear_sbe_irq] inside that ISR at the very least.
|
||||
/// [pac::EDAC_SBE] ISR and use [clear_sbe_irq] inside that ISR at the very least.
|
||||
#[inline(always)]
|
||||
pub fn enable_sbe_irq() {
|
||||
unsafe {
|
||||
@ -31,7 +31,7 @@ pub fn enable_sbe_irq() {
|
||||
}
|
||||
|
||||
/// This function enables the SBE related interrupts. The user should also provide a
|
||||
/// `EDAC_MBE` ISR and use [clear_mbe_irq] inside that ISR at the very least.
|
||||
/// [pac::EDAC_MBE] ISR and use [clear_mbe_irq] inside that ISR at the very least.
|
||||
#[inline(always)]
|
||||
pub fn enable_mbe_irq() {
|
||||
unsafe {
|
||||
@ -39,7 +39,7 @@ pub fn enable_mbe_irq() {
|
||||
}
|
||||
}
|
||||
|
||||
/// This function should be called in the user provided `EDAC_SBE` interrupt-service routine
|
||||
/// This function should be called in the user provided [pac::EDAC_SBE] interrupt-service routine
|
||||
/// to clear the SBE related interrupts.
|
||||
#[inline(always)]
|
||||
pub fn clear_sbe_irq() {
|
||||
@ -52,7 +52,7 @@ pub fn clear_sbe_irq() {
|
||||
});
|
||||
}
|
||||
|
||||
/// This function should be called in the user provided `EDAC_MBE` interrupt-service routine
|
||||
/// This function should be called in the user provided [pac::EDAC_MBE] interrupt-service routine
|
||||
/// to clear the MBE related interrupts.
|
||||
#[inline(always)]
|
||||
pub fn clear_mbe_irq() {
|
||||
|
@ -50,7 +50,7 @@ pub struct Nvm {
|
||||
}
|
||||
|
||||
#[derive(Debug, PartialEq, Eq)]
|
||||
#[cfg_attr(feature = "defmt", derive(defmt::Format))]
|
||||
#[cfg_attr(feature = "defmt", defmt::Format)]
|
||||
pub struct VerifyError {
|
||||
addr: u32,
|
||||
found: u8,
|
||||
|
Loading…
x
Reference in New Issue
Block a user