sftool-lib 0.1.13

SiFli SoC serial utility library
Documentation
1
2
3
4
5
6
7
8
9
use super::SF32LB52Tool;
use crate::common::reset::ResetOps;
use crate::reset::Reset;

impl Reset for SF32LB52Tool {
    fn soft_reset(&mut self) -> Result<(), std::io::Error> {
        ResetOps::soft_reset(self)
    }
}