From a5055bc7757374306938b1c6e6987c8b3d9898ba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Henrik=20Tj=C3=A4der?= <henrik@tjaders.com> Date: Fri, 19 Apr 2019 22:09:08 +0200 Subject: [PATCH] Reactivate images, fix links --- book.toml | 2 ++ src/ch1_00_introduction.md | 16 +++++++++------- {images => src/images}/workflow_chart.png | Bin 3 files changed, 11 insertions(+), 7 deletions(-) rename {images => src/images}/workflow_chart.png (100%) diff --git a/book.toml b/book.toml index 1a3585c..ebbf5de 100644 --- a/book.toml +++ b/book.toml @@ -3,3 +3,5 @@ authors = ["Henrik Tjäder", "Joakim Lundberg"] multilingual = false src = "src" title = "XP-el MPPK" + +[output.linkcheck] diff --git a/src/ch1_00_introduction.md b/src/ch1_00_introduction.md index 25007c1..e552730 100644 --- a/src/ch1_00_introduction.md +++ b/src/ch1_00_introduction.md @@ -9,8 +9,8 @@ Use-cases ranges from heavy industry to tiny sensors in your everyday life. ## Requirements -1. Laptop -2. [Installation](../Installation.md) +1. Computer +2. [Installation](ch2_00_installation.md) # Overview  @@ -23,17 +23,19 @@ While your laptop/stationary computer most likely runs some `x86_64` CPU archite odds are your mobile phone is powered by an ARM processor. The ARM family of Reduced Instruction Set Computing (RISC) architectures is one of the most prevalent processor architectures. -For more information: https://en.wikipedia.org/wiki/ARM_architecture +For more information: [](https://en.wikipedia.org/wiki/ARM_architecture) ## Registers, IO A typical way to access and interface with the hardware connected to your microcontroller is by accessing various registers, which is memory regions mapped to some hardware. -## Features +## Common Features + +To name a few... //// TODO //// -Feels weird. Move out to excercises and explain there I guess... and mayby not all of them. +Feels weird. Move out to exercises and explain there I guess... and maybe not all of them. ### System @@ -59,7 +61,7 @@ Feels weird. Move out to excercises and explain there I guess... and mayby not a ##### USART (Universal Synchronous and Asynchronous Receiver-Transmitter) -##### I2C (Inter-Intergrated Circuit) +##### I2C (Inter-Integrated Circuit) ##### SPI (Serial Peripheral Interface) @@ -159,7 +161,7 @@ The package manager for Rust Taking care of dependencies, compilation and many other things. -For more information: https://doc.rust-lang.org/cargo/ +For more information: [](https://doc.rust-lang.org/cargo/) #### Cargo-binutils diff --git a/images/workflow_chart.png b/src/images/workflow_chart.png similarity index 100% rename from images/workflow_chart.png rename to src/images/workflow_chart.png -- GitLab