From e500ab566c21fe9d72c0a2b35f3ca430a0d72832 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20M=C5=82ynarczyk?= Date: Mon, 10 Oct 2022 15:24:25 +1100 Subject: [PATCH] Fix a typo in registers.md --- src/start/registers.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/start/registers.md b/src/start/registers.md index 09f695a0..d5bb3e0c 100644 --- a/src/start/registers.md +++ b/src/start/registers.md @@ -22,7 +22,7 @@ You may well find that the code you need to access the peripherals in your micro ## Board Crate -A board crate is the perfect starting point, if you're new to embedded Rust. They nicely abstract the HW details that might be overwelming when starting studying this subject, and makes standard tasks easy, like turning a LED on or off. The functionality it exposes varies a lot between boards. Since this book aims at staying hardware agnostic, the board crates won't be covered by this book. +A board crate is the perfect starting point, if you're new to embedded Rust. They nicely abstract the HW details that might be overwhelming when starting studying this subject, and makes standard tasks easy, like turning a LED on or off. The functionality it exposes varies a lot between boards. Since this book aims at staying hardware agnostic, the board crates won't be covered by this book. If you want to experiment with the STM32F3DISCOVERY board, it is highly recommmand to take a look at the [stm32f3-discovery] board crate, which provides functionality to blink the board LEDs, access its compass, bluetooth and more. The [Discovery] book offers a great introduction to the use of a board crate.