pub struct ArmChipInfo {
    pub manufacturer: JEP106Code,
    pub part: u16,
}
Expand description

Information about the chip target we are currently attached to. This can be used for discovery, tho, for now it does not work optimally, as some manufacturers (e.g. ST Microelectronics) violate the spec and thus need special discovery procedures.

Fields

manufacturer: JEP106Code

The JEP106 code of the manufacturer of this chip target.

part: u16

The unique part numer of the chip target. Unfortunately this only unique in the spec. In practice some manufacturers violate the spec and assign a part number to an entire family.

Consider this not unique when working with targets!

Trait Implementations

Formats the value using the given formatter. Read more

Formats the value using the given formatter. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

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

Converts the given value to a String. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.