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/).
1616- Use ` svd-parser ` v0.13.1
1717- Replace suffix in fields' name before converting to snake case when generating methods #563
1818- MIPS API now re-exports ` mips_rt::interrupt ` when the ` rt ` feature is enabled
19+ but does not generate the ` interrupt ` macro anymore
1920
2021### Fixed
2122
Original file line number Diff line number Diff line change @@ -277,7 +277,11 @@ pub fn render(
277277 _ => "C" ,
278278 } ;
279279
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+ {
281285 mod_items. extend ( quote ! {
282286 #[ cfg( feature = "rt" ) ]
283287 #[ macro_export]
You can’t perform that action at this time.
0 commit comments