File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -16,6 +16,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
16
16
- Use ` svd-parser ` v0.13.1
17
17
- Replace suffix in fields' name before converting to snake case when generating methods #563
18
18
- MIPS API now re-exports ` mips_rt::interrupt ` when the ` rt ` feature is enabled
19
+ but does not generate the ` interrupt ` macro anymore
19
20
20
21
### Fixed
21
22
Original file line number Diff line number Diff line change @@ -277,7 +277,11 @@ pub fn render(
277
277
_ => "C" ,
278
278
} ;
279
279
280
- if target != Target :: CortexM && target != Target :: Msp430 && target != Target :: XtensaLX {
280
+ if target != Target :: CortexM
281
+ && target != Target :: Msp430
282
+ && target != Target :: XtensaLX
283
+ && target != Target :: Mips
284
+ {
281
285
mod_items. extend ( quote ! {
282
286
#[ cfg( feature = "rt" ) ]
283
287
#[ macro_export]
You can’t perform that action at this time.
0 commit comments