From ee0f7b1145d8357b82646ca5b06f935cad51afdb Mon Sep 17 00:00:00 2001 From: Mirabellensaft Date: Mon, 20 Mar 2023 15:48:21 +0100 Subject: [PATCH] add links to html doc --- embedded-workshop-book/src/button-implementation.md | 4 +--- embedded-workshop-book/src/uarte-implementation.md | 2 +- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/embedded-workshop-book/src/button-implementation.md b/embedded-workshop-book/src/button-implementation.md index 814aca9..8c0118b 100644 --- a/embedded-workshop-book/src/button-implementation.md +++ b/embedded-workshop-book/src/button-implementation.md @@ -3,9 +3,7 @@ ### Step 1: Read the docs! -✅ Go to [Nordic Infocenter](https://infocenter.nordicsemi.com/topic/ug_nrf52840_dk/UG/dk/intro.html) to download the **User Guide**. - -✅ Read docs, section 8.7 for info about pins and pin configuration related to the buttons. Note down the pins that the buttons are connected to. +✅ Read the [User Guide section 8.7](https://infocenter.nordicsemi.com/topic/ug_nrf52840_dk/UG/dk/hw_buttons_leds.html?cp=5_0_4_7_6) for info about pins and pin configuration related to the buttons. Note down the pins that the buttons are connected to. The pins need to be configured as input pins with an internal pull-up. The pins as well as the configurations are defined as types in the `nrf-hal` in the `gpio` peripheral. Add the following imports: `Input` and `PullUp`. diff --git a/embedded-workshop-book/src/uarte-implementation.md b/embedded-workshop-book/src/uarte-implementation.md index 705d95b..b1f3dc7 100644 --- a/embedded-workshop-book/src/uarte-implementation.md +++ b/embedded-workshop-book/src/uarte-implementation.md @@ -9,7 +9,7 @@ The UART protocol requires four pins, they are usually labelled: * CTS * RTS -✅ Check the User Guide in section 7.2 to find to find out which pins are reserved for these and what their configuration needs to be. +✅ Check the [User Guide in section 7.2](https://infocenter.nordicsemi.com/topic/ug_nrf52840_dk/UG/dk/vir_com_port.html) to find to find out which pins are reserved for these and what their configuration needs to be. ### Step 2: Explore the `nrf-hal` to find out what needs to be done.