You've already forked EEGFrontier
mirror of
https://github.com/TheusHen/EEGFrontier.git
synced 2026-04-16 15:06:07 +00:00
20 lines
235 B
Markdown
20 lines
235 B
Markdown
# PlatformIO Tests
|
|
|
|
## Run unit tests (host / local PC)
|
|
|
|
```bash
|
|
pio test -e native
|
|
```
|
|
|
|
## Build firmware (RP2040 / XIAO)
|
|
|
|
```bash
|
|
pio run -e xiao_rp2040
|
|
```
|
|
|
|
## Optional: upload firmware
|
|
|
|
```bash
|
|
pio run -e xiao_rp2040 -t upload
|
|
```
|