add links to html doc

This commit is contained in:
Mirabellensaft 2023-03-20 15:48:21 +01:00
parent b09dd739f8
commit ee0f7b1145
2 changed files with 2 additions and 4 deletions

View File

@ -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`.

View File

@ -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.