diff options
author | Loek Le Blansch <loek@pipeframe.xyz> | 2024-06-26 14:16:51 +0200 |
---|---|---|
committer | Loek Le Blansch <loek@pipeframe.xyz> | 2024-06-26 14:16:51 +0200 |
commit | c1473020106d36b20cde090ac417c253b0059336 (patch) | |
tree | c26a922dd3aad35fb11088534c055ad79683541c /main | |
parent | ad3e4f50ab83036ab974b4f30295c873dac3c7f0 (diff) |
fix up documentation some more
Diffstat (limited to 'main')
-rw-r--r-- | main/readme.md | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/main/readme.md b/main/readme.md index 97150eb..2a50fd1 100644 --- a/main/readme.md +++ b/main/readme.md @@ -4,17 +4,18 @@ # main controller firmware This directory contains the software for the main controller of the Puzzle Box. +The main controller target is a Raspberry Pi Pico W. -## building +## Building -1. make sure the submodules are initialized -2. create a `config.h` file (see \ref main_config "config") -3. use CMake to build +1. Create a `config.h` file (see [config](#main_config)) +2. Use CMake to build -## flashing +## Flashing -1. build -2. hold the BOOTSEL button while resetting the pico (by power cycling or +1. Hold the BOOTSEL button while resetting the Pico (by power cycling or pulling pin 30 (RUN) to GND) -3. `picotool load build/main.uf2` +2. ``` + $ picotool load build/main.uf2 + ``` |