Update cheatsheets

This commit is contained in:
ivuorinen
2025-04-28 00:20:19 +00:00
parent 5bf37ece1a
commit 2c0f4bfdb2
88 changed files with 330 additions and 253 deletions

View File

@@ -14,7 +14,7 @@ source: https://github.com/tldr-pages/tldr.git
- List all available project targets of a specific environment:
`pio run --list-targets --environment {{environment}}`
`pio run --list-targets {{[-e|--environment]}} {{environment}}`
- Run all targets:
@@ -22,12 +22,12 @@ source: https://github.com/tldr-pages/tldr.git
- Run all targets of specified environments:
`pio run --environment {{environment1}} --environment {{environment2}}`
`pio run {{[-e|--environment]}} {{environment1}} {{[-e|--environment]}} {{environment2}}`
- Run specified targets:
`pio run --target {{target1}} --target {{target2}}`
`pio run {{[-t|--target]}} {{target1}} {{[-t|--target]}} {{target2}}`
- Run the targets of a specified configuration file:
`pio run --project-conf {{path/to/platformio.ini}}`
`pio run {{[-c|--project-conf]}} {{path/to/platformio.ini}}`