From f12b70535bc5546784a8eb4ee8ff678b45f29c0c Mon Sep 17 00:00:00 2001 From: Bob McWhirter Date: Tue, 2 Nov 2021 12:03:56 -0400 Subject: Adjust for STM32U5. --- examples/stm32l4/.cargo/config.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'examples') diff --git a/examples/stm32l4/.cargo/config.toml b/examples/stm32l4/.cargo/config.toml index b157e3aeb..d32ca4ae9 100644 --- a/examples/stm32l4/.cargo/config.toml +++ b/examples/stm32l4/.cargo/config.toml @@ -1,7 +1,8 @@ [target.'cfg(all(target_arch = "arm", target_os = "none"))'] # replace STM32F429ZITx with your chip as listed in `probe-run --list-chips` #runner = "probe-run --chip STM32L475VGT6" -runner = "probe-run --chip STM32L475VG" +#runner = "probe-run --chip STM32L475VG" +runner = "probe-run --chip STM32L4S5VI" rustflags = [ # LLD (shipped with the Rust toolchain) is used as the default linker -- cgit