File tree 2 files changed +14
-1
lines changed
2 files changed +14
-1
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/).
8
8
## [ Unreleased]
9
9
10
10
- Add ` base-address-shift ` config flag
11
+ - Add ` write_raw ` to all writtable registers
11
12
12
13
## [ v0.31.5] - 2024-01-04
13
14
Original file line number Diff line number Diff line change @@ -203,6 +203,18 @@ impl<REG: Writable> Reg<REG> {
203
203
}
204
204
}
205
205
206
+ impl < REG : Writable > Reg < REG > {
207
+ /// Writes raw value to register.
208
+ ///
209
+ /// # Safety
210
+ ///
211
+ /// Unsafe as it passes value without checks.
212
+ #[ inline( always) ]
213
+ pub unsafe fn write_raw ( & self , bits : REG :: Ux ) {
214
+ self . register . set ( bits) ;
215
+ }
216
+ }
217
+
206
218
impl < REG : Readable + Writable > Reg < REG > {
207
219
/// Modifies the contents of the register by reading and then writing it.
208
220
///
@@ -550,7 +562,7 @@ macro_rules! bit_proxy {
550
562
pub const fn width( & self ) -> u8 {
551
563
Self :: WIDTH
552
564
}
553
-
565
+
554
566
/// Field offset
555
567
#[ inline( always) ]
556
568
pub const fn offset( & self ) -> u8 {
You can’t perform that action at this time.
0 commit comments