Skip to content

Commit

Permalink
Initial STM32WBx5 support
Browse files Browse the repository at this point in the history
Co-authored-by: Ruben De Smet ruben.de.smet@rubdos.be
  • Loading branch information
Vanarill committed Apr 27, 2020
1 parent d44b093 commit a779fac
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions src/devices/registry.rs
Original file line number Diff line number Diff line change
Expand Up @@ -736,4 +736,27 @@ pub const REGISTRY: &[Device] = &[
log_swo: None,
log_dso: Some(LogDso { krate: crates::Dso::Nrf91, features: &[] }),
},
Device {
name: "stm32wbx5",
target: "thumbv7em-none-eabihf",
flash_origin: 0x0800_0000,
ram_origin: 0x2000_0000,
platform_crate: PlatformCrate {
krate: crates::Platform::CortexM,
flag: "cortex_m4f_r0p1",
features: &["floating-point-unit"],
},
bindings_crate: BindingsCrate {
krate: crates::Bindings::Stm32,
flag: "stm32wbx5",
features: &[],
},
probe_bmp: Some(ProbeBmp { device: "stm32wbx5" }),
probe_openocd: Some(ProbeOpenocd {
arguments: &["-f", "interface/stlink.cfg", "-f", "target/stm32wbx5.cfg"],
}),
probe_jlink: None,
log_swo: Some(LogSwo { reset_freq: 4_000_000 }),
log_dso: None,
},
];

0 comments on commit a779fac

Please sign in to comment.