stm32u5/stm32u575/flash/
nskeyr.rs

1///Register `NSKEYR` writer
2pub type W = crate::W<NSKEYRrs>;
3///Field `NSKEY` writer - Flash memory non-secure key
4pub type NSKEY_W<'a, REG> = crate::FieldWriter<'a, REG, 32, u32>;
5impl core::fmt::Debug for crate::generic::Reg<NSKEYRrs> {
6    fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
7        write!(f, "(not readable)")
8    }
9}
10impl W {
11    ///Bits 0:31 - Flash memory non-secure key
12    #[inline(always)]
13    pub fn nskey(&mut self) -> NSKEY_W<NSKEYRrs> {
14        NSKEY_W::new(self, 0)
15    }
16}
17/**FLASH non-secure key register
18
19You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`nskeyr::W`](W). See [API](https://docs.rs/svd2rust/#read--modify--write-api).
20
21See register [structure](https://stm32-rs.github.io/stm32-rs/STM32U575.html#FLASH:NSKEYR)*/
22pub struct NSKEYRrs;
23impl crate::RegisterSpec for NSKEYRrs {
24    type Ux = u32;
25}
26///`write(|w| ..)` method takes [`nskeyr::W`](W) writer structure
27impl crate::Writable for NSKEYRrs {
28    type Safety = crate::Unsafe;
29}
30///`reset()` method sets NSKEYR to value 0
31impl crate::Resettable for NSKEYRrs {}