pub trait RiscvDebugSequence: Send + Sync {
    fn on_connect(
        &self,
        _interface: &mut RiscvCommunicationInterface
    ) -> Result<(), Error> { ... } }
Expand description

A interface to operate debug sequences for RISC-V targets.

Should be implemented on a custom handle for chips that require special sequence code.

Provided Methods§

Executed when the probe establishes a connection to the target.

Implementors§