svd-generator 0.4.1

Converts device information from flattened device tree into an SVD description
Documentation
1
2
3
4
5
6
7
8
9
use crate::Result;

pub mod channel;
pub mod dmac;

/// Creates Synopsys DesignWare AXI DMAC register definitions.
pub fn create() -> Result<Vec<svd::RegisterCluster>> {
    Ok([dmac::create()?, channel::create()?].into())
}