mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-07-04 09:15:22 +02:00
24 lines
652 B
Markdown
24 lines
652 B
Markdown
# pio debug
|
|
|
|
> Debug PlatformIO projecten.
|
|
> Meer informatie: <https://docs.platformio.org/en/latest/core/userguide/cmd_debug.html>.
|
|
|
|
- Debug het PlatformIO project in de huidige map:
|
|
|
|
`pio debug`
|
|
|
|
- Debug een specifiek PlatformIO project:
|
|
|
|
`pio debug {{[-d|--project-dir]}} {{pad/naar/platformio_project}}`
|
|
|
|
- Debug een specifieke omgeving:
|
|
|
|
`pio debug {{[-e|--environment]}} {{omgeving}}`
|
|
|
|
- Debug een PlatformIO project met een specifiek configuratiebestand:
|
|
|
|
`pio debug {{[-c|--project-conf]}} {{pad/naar/platformio.ini}}`
|
|
|
|
- Debug een PlatformIO project door gebruik te maken van de `gdb` debugger:
|
|
|
|
`pio debug --interface {{gdb}} {{gdb_opties}}`
|