[][src]Struct probe_rs::probe::stlink::STLink

pub struct STLink { /* fields omitted */ }

Methods

impl STLink[src]

pub fn get_target_voltage(&mut self) -> Result<f32, DebugProbeError>[src]

Reads the target voltage. For the china fake variants this will always read a nonzero value!

pub fn set_swd_frequency(
    &mut self,
    frequency: SwdFrequencyToDelayCount
) -> Result<(), DebugProbeError>
[src]

sets the SWD frequency.

pub fn set_jtag_frequency(
    &mut self,
    frequency: JTagFrequencyToDivider
) -> Result<(), DebugProbeError>
[src]

Sets the JTAG frequency.

pub fn open_ap(&mut self, apsel: impl AccessPort) -> Result<(), DebugProbeError>[src]

pub fn close_ap(
    &mut self,
    apsel: impl AccessPort
) -> Result<(), DebugProbeError>
[src]

pub fn drive_nreset(&mut self, is_asserted: bool) -> Result<(), DebugProbeError>[src]

Drives the nRESET pin. is_asserted tells wheter the reset should be asserted or deasserted.

Trait Implementations

impl DAPAccess for STLink[src]

fn read_register(
    &mut self,
    port: Port,
    addr: u16
) -> Result<u32, DebugProbeError>
[src]

Reads the DAP register on the specified port and address.

fn write_register(
    &mut self,
    port: Port,
    addr: u16,
    value: u32
) -> Result<(), DebugProbeError>
[src]

Writes a value to the DAP register on the specified port and address.

impl DebugProbe for STLink[src]

fn attach(
    &mut self,
    protocol: Option<WireProtocol>
) -> Result<WireProtocol, DebugProbeError>
[src]

Enters debug mode.

fn detach(&mut self) -> Result<(), DebugProbeError>[src]

Leave debug mode.

fn target_reset(&mut self) -> Result<(), DebugProbeError>[src]

Asserts the nRESET pin.

impl Drop for STLink[src]

Auto Trait Implementations

impl RefUnwindSafe for STLink

impl Send for STLink

impl Sync for STLink

impl Unpin for STLink

impl UnwindSafe for STLink

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.