From c4e3ebdaa797ab872ad36b60f8d469461e5ba1f1 Mon Sep 17 00:00:00 2001 From: Mirabellensaft Date: Wed, 8 Jul 2020 15:18:43 +0200 Subject: [PATCH] delete beginner README.md --- beginner/README.md | 103 --------------------------------------------- 1 file changed, 103 deletions(-) delete mode 100644 beginner/README.md diff --git a/beginner/README.md b/beginner/README.md deleted file mode 100644 index 7c46159..0000000 --- a/beginner/README.md +++ /dev/null @@ -1,103 +0,0 @@ -# `beginner` - -> Beginner workshop - -## Hardware - - - -## The nRF52840 - - - -## Parts of an embedded program - - - -## Building the program - - -## Flashing the program - - - -## Viewing logs - - - -## Running the program from VS code - - - -## Panicking - - - -## Using a Hardware Abstraction Layer (HAL) - - - -## Timers and time - -Next we'll look into the time related APIs exposed by the `dk` HAL. - -Open the `src/bin/blinky.rs` file. - -This program will blink (turn on and off) one of the LEDs on the board. The time interval between each toggle operation is one second. This wait time between consecutive operations is generated by the blocking `timer.wait` operation. This function call will block the program execution for the specified [`Duration`] argument. - -[`Duration`]: https://doc.rust-lang.org/core/time/struct.Duration.html - -The other time related API exposed by the `dk` HAL is the `dk::uptime` function. This function returns the time that has elapsed since the call to the `dk::init` function. This function is used in the program to log the time of each LED toggle operation. - -Next, we'll look into the radio API exposed by the `dk` HAL. But before that we'll need to set up the nRF52840 Dongle. - -## nRF52840 Dongle - - - - - - -## Radio out - - - - - -# - -# - -# - -# -# - -# - -## Radio in - - - -## Radio puzzle - - - - -# - - - -# -# - -# - - - -# - - - - -