File tree Expand file tree Collapse file tree 3 files changed +6
-4
lines changed Expand file tree Collapse file tree 3 files changed +6
-4
lines changed Original file line number Diff line number Diff line change 1836
1836
<name >delay0</name >
1837
1837
<description >Delay Control 0 Register</description >
1838
1838
<addressOffset >0x28</addressOffset >
1839
+ <resetValue >0x00010001</resetValue >
1839
1840
<fields >
1840
1841
<field >
1841
1842
<name >sckcs</name >
1853
1854
<name >delay1</name >
1854
1855
<description >Delay Control 1 Register</description >
1855
1856
<addressOffset >0x2C</addressOffset >
1857
+ <resetValue >0x00000001</resetValue >
1856
1858
<fields >
1857
1859
<field >
1858
1860
<name >interxfr</name >
Original file line number Diff line number Diff line change @@ -129,10 +129,10 @@ impl crate::Readable for DELAY0_SPEC {
129
129
impl crate :: Writable for DELAY0_SPEC {
130
130
type Writer = W ;
131
131
}
132
- #[ doc = "`reset()` method sets delay0 to value 0 " ]
132
+ #[ doc = "`reset()` method sets delay0 to value 0x0001_0001 " ]
133
133
impl crate :: Resettable for DELAY0_SPEC {
134
134
#[ inline( always) ]
135
135
fn reset_value ( ) -> Self :: Ux {
136
- 0
136
+ 0x0001_0001
137
137
}
138
138
}
Original file line number Diff line number Diff line change @@ -129,10 +129,10 @@ impl crate::Readable for DELAY1_SPEC {
129
129
impl crate :: Writable for DELAY1_SPEC {
130
130
type Writer = W ;
131
131
}
132
- #[ doc = "`reset()` method sets delay1 to value 0 " ]
132
+ #[ doc = "`reset()` method sets delay1 to value 0x01 " ]
133
133
impl crate :: Resettable for DELAY1_SPEC {
134
134
#[ inline( always) ]
135
135
fn reset_value ( ) -> Self :: Ux {
136
- 0
136
+ 0x01
137
137
}
138
138
}
You can’t perform that action at this time.
0 commit comments