From 026f1733805c019a4a13a647ae8b1f471e8b6954 Mon Sep 17 00:00:00 2001 From: Tanks Transfeld Date: Mon, 20 Mar 2023 14:42:51 +0100 Subject: [PATCH] Update embedded-workshop-book/src/bsc-exercise.md Co-authored-by: Jonathan Pallant --- embedded-workshop-book/src/bsc-exercise.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/embedded-workshop-book/src/bsc-exercise.md b/embedded-workshop-book/src/bsc-exercise.md index c18d59a..43957d2 100644 --- a/embedded-workshop-book/src/bsc-exercise.md +++ b/embedded-workshop-book/src/bsc-exercise.md @@ -1,6 +1,6 @@ # BSC Exercise -In this exercise you will learn how to write a board support crate by implementing buttons and the UARTE peripheral. +In this exercise you will learn how to write a *Board Support Crate* (or BSC, also known as a *Board Support Package*) by implementing support for handling button presses, and support for using the UARTE peripheral. The template `down-the-stack/dk_bsc/src/lib.rs` already contains the LED and Timer implementations. Add your code to the designated lines. You'll find a `//todo!` there.