mod registry;
pub use self::registry::REGISTRY;
use crate::crates;
use anyhow::{bail, Result};
pub struct Device {
pub name: &'static str,
pub target: &'static str,
pub flash_origin: u32,
pub ram_origin: u32,
pub platform_crate: PlatformCrate,
pub bindings_crate: BindingsCrate,
pub probe_bmp: Option<ProbeBmp>,
pub probe_openocd: Option<ProbeOpenocd>,
pub probe_jlink: Option<ProbeJlink>,
pub log_swo: Option<LogSwo>,
pub log_dso: Option<LogDso>,
}
pub struct PlatformCrate {
pub krate: crates::Platform,
pub flag: &'static str,
pub features: &'static [&'static str],
}
pub struct BindingsCrate {
pub krate: crates::Bindings,
pub flag: &'static str,
pub features: &'static [&'static str],
}
pub struct ProbeBmp {
pub device: &'static str,
}
pub struct ProbeOpenocd {
pub arguments: &'static [&'static str],
}
pub struct ProbeJlink {
pub device: &'static str,
pub interface: &'static str,
}
pub struct LogSwo {
pub reset_freq: u32,
}
pub struct LogDso {
pub krate: crates::Dso,
pub features: &'static [&'static str],
}
pub fn find(name: &str) -> Result<&'static Device> {
for device in REGISTRY {
if device.name == name {
return Ok(device);
}
}
bail!("Couldn't find device with name `{}`", name);
}
impl PlatformCrate {
pub fn linker_platform(&self) -> &'static str {
match self.krate {
crates::Platform::Cortexm => "arm",
crates::Platform::Riscv => "riscv",
}
}
}