Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 3 additions & 20 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -271,33 +271,16 @@ make -j$(nproc)

**Debug Build:**
```bash
cmake .. -DPICO_BOARD=pico2_w -DCMAKE_BUILD_TYPE=Debug
make
```

**Release Build (Optimized):**
```bash
cmake .. -DPICO_BOARD=pico2_w -DCMAKE_BUILD_TYPE=Release
cmake .. -DPICO_BOARD=pico2_w -DENABLE_DEBUG=ON
make
```

**Clean Build:**
**Release Build** (disables printing and tightens security features)
```bash
# Remove build directory and start fresh
cd ..
rm -rf build
mkdir build
cd build
cmake .. -DPICO_BOARD=pico2_w
cmake .. -DPICO_BOARD=pico2_w -DENABLE_DEBUG=OFF
make
```

**Build Specific Targets:**
```bash
make mastr # Build main firmware
make test_runner # Build unit tests
```

---

## Running the Host Application
Expand Down