svdtools 0.5.0

Tool for modifying bugs in CMSIS SVD
Documentation
use std::path::Path;
use svdtools::common::svd_reader;

// test svd parser lib consistency
#[test]
fn read_and_write() {
    // read an svd
    let res_dir = Path::new("res/example1");
    let svd_path = res_dir.join("stm32l4x2.svd");
    let svd = svd_reader::device(&svd_path).unwrap();

    // write the svd in xml
    let xml = svd_encoder::encode(&svd).unwrap();

    // read again the svd
    let same_svd = svd_parser::parse(&xml).unwrap();

    assert_eq!(svd, same_svd)
}