Enum stm32wlxx_hal::info::Core

source ·
pub enum Core {
    Cm4,
    Cm0p,
}
Expand description

CPU core.

Variants§

§

Cm4

Cortex-M4, core 1.

§

Cm0p

Cortex-M0+, core 2.

Implementations§

source§

impl Core

source

pub const CT: Core = Core::Cm4

Get the CPU core at compile time.

This is determined by the HAL features.

For a runtime mechanism use Core::from_cpuid().

Example
use stm32wlxx_hal::info::Core;

#[cfg(feature = "stm32wl5x_cm4")]
assert_eq!(Core::CT, Core::Cm4);

#[cfg(feature = "stm32wl5x_cm0p")]
assert_eq!(Core::CT, Core::Cm0p);

#[cfg(feature = "stm32wle5")]
assert_eq!(Core::CT, Core::Cm4);
source

pub fn from_cpuid() -> Core

Get the CPU core at runtime.

This is determined by the part number field in CPUID register in the system control block.

For a compile time mechanism use Core::CT.

Example
use stm32wlxx_hal::info::Core;

match Core::from_device() {
    Core::Cm4 => defmt::info!("Hello world from the Cortex-M4 CPU"),
    Core::Cm0p => defmt::info!("Hello world from the Cortex-M0+ CPU"),
}
source

pub const fn is_cm4(&self) -> bool

Returns true if the core is Cm4.

source

pub const fn is_cm0p(&self) -> bool

Returns true if the core is Cm0p.

Trait Implementations§

source§

impl Clone for Core

source§

fn clone(&self) -> Core

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for Core

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for Core

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Hash for Core

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl PartialEq for Core

source§

fn eq(&self, other: &Core) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Copy for Core

source§

impl Eq for Core

source§

impl StructuralEq for Core

source§

impl StructuralPartialEq for Core

Auto Trait Implementations§

§

impl RefUnwindSafe for Core

§

impl Send for Core

§

impl Sync for Core

§

impl Unpin for Core

§

impl UnwindSafe for Core

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.