HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

picotool — Manage Raspberry Pi Pico boards. More information: <https://github.com/raspberrypi/picotool#overview

Submitted by: @import:tldr-pages··
0
Viewed 0 times
boardsraspberrycommandclimanagepicopicotoolmore

Problem

How to use the picotool command: Manage Raspberry Pi Pico boards. More information: <https://github.com/raspberrypi/picotool#overview>.

Solution

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

Code Snippets

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

Context

tldr-pages: common/picotool

Revisions (0)

No revisions yet.