Files
cheatsheet-tldr/tldr/picotool
2025-12-02 00:21:15 +00:00

38 lines
629 B
Plaintext
Executable File

---
syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# picotool
> Manage Raspberry Pi Pico boards.
> More information: <https://github.com/raspberrypi/picotool#overview>.
- Display information about the currently loaded program on a Pico:
`picotool info`
- Load a binary onto a Pico:
`picotool load {{path/to/binary}}`
- Convert an ELF or BIN file to UF2:
`picotool uf2 convert {{path/to/elf_or_bin}} {{path/to/output}}`
- Reboot a Pico:
`picotool reboot`
- List all known registers:
`picotool otp list`
- Display help:
`picotool help`
- Display version:
`picotool version`