From a74ae1af44072ed63b0cc34c942307c8541af059 Mon Sep 17 00:00:00 2001 From: Tanks Transfeld Date: Tue, 21 Mar 2023 18:24:47 +0100 Subject: [PATCH] Update embedded-workshop-book/src/generating-pac.md Co-authored-by: Jonathan Pallant --- embedded-workshop-book/src/generating-pac.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/embedded-workshop-book/src/generating-pac.md b/embedded-workshop-book/src/generating-pac.md index 144b805..a46d20f 100644 --- a/embedded-workshop-book/src/generating-pac.md +++ b/embedded-workshop-book/src/generating-pac.md @@ -40,7 +40,7 @@ svd2rust --target cortex-m -i nrf52.svd If you check the folder `down-the-stack/dk-pac` now, you see three new files: * lib.rs - the file that contains the generated code for the pac * device.x - linker script that weakly aliases all the interrupt handlers to the default exception handler (DefaultHandler). -* build.rs - linker script +* build.rs - build script that places device.x somewhere the linker can find. ✅ Make an `/src` and move the generated `lib.rs` into it.