From da068daa37d51808c909e62d435067c5223f3610 Mon Sep 17 00:00:00 2001 From: Dion Dokter Date: Wed, 17 Apr 2024 14:48:38 +0200 Subject: [PATCH] Fix broken link I noticed this link was wrong, this change should fix it --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5625c20..3d1a54b 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ This tool has a very different approach compared to `svd2rust` and it is inspire - No ownership because owned registers are an obstacle to writing low level drivers (LLD). Anyway writing LLDs requires a lot of unsafe code and ownership makes it more complex to access registers from interrupts and other threads. LLDs shall present safe APIs because only they can implement all logic for a safe usage of peripherals. -- Support [tracing](#tracing) of register accesses and additionally mocking of registers on non-embedded devices through +- Support [tracing](#tracing-feature) of register accesses and additionally mocking of registers on non-embedded devices through external libraries. This allows the execution unit tests for code that uses the generated libraries on non-embedded devices. - PAC shall have ideally 0 dependencies to any other crates.