Fix cortex m name

This commit is contained in:
Jan-Henrik 2022-04-19 12:32:25 +02:00
parent f6385dd21d
commit 73abd22a48
2 changed files with 1 additions and 5 deletions

View file

@ -50,7 +50,6 @@ pre-release-replacements = [
[workspace.metadata.release] [workspace.metadata.release]
shared-version = true shared-version = true
dependent-version = "upgrade"
[workspace] [workspace]
members = [ members = [

View file

@ -13,7 +13,7 @@ pub trait Processor {
/// Implementation of a processor based on the cortex-m crate /// Implementation of a processor based on the cortex-m crate
#[cfg(feature = "cortex-m")] #[cfg(feature = "cortex-m")]
mod cortex_m { pub mod cortex_m {
use super::Processor; use super::Processor;
/// cortex-m based [Processor] /// cortex-m based [Processor]
pub struct CortexM {} pub struct CortexM {}
@ -41,6 +41,3 @@ mod cortex_m {
} }
} }
#[cfg(feature = "cortex-m")]
/// A Jumper implementation for use with cortex-m processors
pub use cortex_m::CortexM;