From 207f7dba4872f5f12cba5c0ce77caa0b4fde3eee Mon Sep 17 00:00:00 2001 From: Milton Eduardo Sosa <31409391+snorkman88@users.noreply.github.com> Date: Mon, 4 Dec 2023 17:19:24 +0000 Subject: Add RTC interrupt example for stm32f411 (#853) * Add RTC example for stm32f411 * Remove svd file --------- Co-authored-by: Milton Eduardo Sosa --- examples/stm32f411_rtc_interrupt/.cargo/config.toml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 examples/stm32f411_rtc_interrupt/.cargo/config.toml (limited to 'examples/stm32f411_rtc_interrupt/.cargo') diff --git a/examples/stm32f411_rtc_interrupt/.cargo/config.toml b/examples/stm32f411_rtc_interrupt/.cargo/config.toml new file mode 100644 index 0000000..806f2ee --- /dev/null +++ b/examples/stm32f411_rtc_interrupt/.cargo/config.toml @@ -0,0 +1,14 @@ +[target.thumbv7em-none-eabihf] + +runner = "probe-rs run --chip STM32F411CEUx" + +rustflags = [ + "-C", "link-arg=-Tlink.x", + "-C", "link-arg=-Tdefmt.x", +] + +[build] +target = "thumbv7em-none-eabihf" + +[env] +DEFMT_LOG = "debug" \ No newline at end of file -- cgit v1.2.3