File tree Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -20,6 +20,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
20
20
- ` RccBus ` , ` Enable ` , ` Reset ` traits and implementations for peripherals ([ #299 ] )
21
21
- Support cortex-m-rt ` v0.7.0 ` but still allow ` v0.6.13 ` ([ #283 ] )
22
22
- Add missing SPI impls for the ` gpio-f303 ` device groups (e.g. stm32f303vc) ([ #304 ] )
23
+ - Make timer ` InterruptTypes ` fields public to be useful. ([ #304 ] )
23
24
24
25
### Fixed
25
26
Original file line number Diff line number Diff line change @@ -6,13 +6,13 @@ use crate::pac::Interrupt;
6
6
#[ non_exhaustive]
7
7
pub struct InterruptTypes {
8
8
/// Break Interrupt
9
- r#break : Interrupt ,
9
+ pub r#break : Interrupt ,
10
10
/// Update Interrupt
11
- update : Interrupt ,
11
+ pub update : Interrupt ,
12
12
/// Trigger and communication Interrupt
13
- trigger : Interrupt ,
13
+ pub trigger : Interrupt ,
14
14
/// Capture and compare interupt
15
- capture_compare : Interrupt ,
15
+ pub capture_compare : Interrupt ,
16
16
}
17
17
18
18
// FIXME: Use conditional feature compilation to make this compialble for all chip families.
You can’t perform that action at this time.
0 commit comments