We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b04a121 commit a63a3a9Copy full SHA for a63a3a9
src/map/reg/scb.rs
@@ -129,7 +129,11 @@ reg! {
129
traits => { RReg WReg };
130
fields => {
131
/// Force exception stacking start in double word aligned address.
132
+ #[cfg(not(cortexm_core = "cortexm_r0p1"))]
133
STKALIGN => { offset => 9; width => 1; traits => { RRRegField WWRegField } };
134
+ /// Force exception stacking start in double word aligned address.
135
+ #[cfg(cortexm_core = "cortexm_r0p1")]
136
+ STKALIGN => { offset => 9; width => 1; traits => { RRRegField } };
137
/// Ignore data bus fault during HardFault and NMI handlers.
138
BFHFNMIGN => { offset => 8; width => 1; traits => { RRRegField WWRegField } };
139
/// Trap on divide by 0.
0 commit comments