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/).
2020- ` RccBus ` , ` Enable ` , ` Reset ` traits and implementations for peripherals ([ #299 ] )
2121- Support cortex-m-rt ` v0.7.0 ` but still allow ` v0.6.13 ` ([ #283 ] )
2222- Add missing SPI impls for the ` gpio-f303 ` device groups (e.g. stm32f303vc) ([ #304 ] )
23+ - Make timer ` InterruptTypes ` fields public to be useful. ([ #304 ] )
2324
2425### Fixed
2526
Original file line number Diff line number Diff line change @@ -6,13 +6,13 @@ use crate::pac::Interrupt;
66#[ non_exhaustive]
77pub struct InterruptTypes {
88 /// Break Interrupt
9- r#break : Interrupt ,
9+ pub r#break : Interrupt ,
1010 /// Update Interrupt
11- update : Interrupt ,
11+ pub update : Interrupt ,
1212 /// Trigger and communication Interrupt
13- trigger : Interrupt ,
13+ pub trigger : Interrupt ,
1414 /// Capture and compare interupt
15- capture_compare : Interrupt ,
15+ pub capture_compare : Interrupt ,
1616}
1717
1818// 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