Struct drone::devices::Device[][src]

pub struct Device {
    pub name: &'static str,
    pub target: &'static str,
    pub flash_origin: u32,
    pub ram_origin: u32,
    pub platform_crate: PlatformCrate,
    pub bindings_crate: BindingsCrate,
    pub probe_bmp: Option<ProbeBmp>,
    pub probe_openocd: Option<ProbeOpenocd>,
    pub probe_jlink: Option<ProbeJlink>,
    pub log_swo: Option<LogSwo>,
    pub log_dso: Option<LogDso>,
}

Device configuration.

Fields

name: &'static str

Device name.

target: &'static str

Target triple.

flash_origin: u32

Flash memory origin address.

ram_origin: u32

RAM memory origin address.

platform_crate: PlatformCrate

Drone platform crate configuration.

bindings_crate: BindingsCrate

Drone bindings crate configuration.

probe_bmp: Option<ProbeBmp>

Black Magic Probe configuration.

probe_openocd: Option<ProbeOpenocd>

OpenOCD configuration.

probe_jlink: Option<ProbeJlink>

Segger J-Link configuration.

log_swo: Option<LogSwo>

ARM® SWO configuration.

log_dso: Option<LogDso>

Drone Serial Output configuration.

Auto Trait Implementations

impl RefUnwindSafe for Device

impl Send for Device

impl Sync for Device

impl Unpin for Device

impl UnwindSafe for Device

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,