From fad413751a9777548443df0d1618fe78314db26e Mon Sep 17 00:00:00 2001 From: Levi Pearson Date: Thu, 10 Mar 2022 09:10:14 +0000 Subject: [PATCH] Update 'PAC Guide' --- PAC-Guide.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/PAC-Guide.md b/PAC-Guide.md index 0b14631..dffe022 100644 --- a/PAC-Guide.md +++ b/PAC-Guide.md @@ -6,6 +6,9 @@ + [Generated stm32f1 PAC docs](https://docs.rs/stm32f1xx-hal/latest/stm32f1xx_hal/pac/index.html) + [API description from svd2rust](https://docs.rs/svd2rust/latest/svd2rust/#peripheral-api) +## Crate API Structure +![StructureDiagram](https://cgit.pinealservo.com/BluePill_Rust/resources/raw/branch/master/PACStructure.png) + ## Crate top-level items The whole set of peripherals is managed by a singleton object of type Peripherals in the base namespace of the crate. You take ownership of this object via `Peripherals::take()`; this returns `Option` because it can only be performed once and will subsequently return `None`.