Linux command
picotool 命令
文本
复制后可按需替换文件名、目录或参数。
常用示例
Show device info
picotool info
Load binary
picotool load [firmware.uf2]
Save flash contents
picotool save -a [backup.bin]
Verify binary
picotool verify [firmware.uf2]
Reboot device
picotool reboot
Show binary info
picotool info [firmware.elf]
Erase flash
picotool load --erase
说明
picotool manages Raspberry Pi Pico and RP2040 devices. It loads firmware, reads device info, and controls boot mode. Device info shows chip details and running program. Binary info displays embedded metadata. Loading writes firmware to flash. UF2 and ELF formats are supported. Save extracts flash contents for backup. The entire flash or specific regions can be dumped. Verification compares device contents to a file. Useful for confirming successful programming.
参数
- info
- Show device/file info.
- load
- Load binary to device.
- save
- Save from device.
- verify
- Verify device contents.
- reboot
- Reboot device.
- version
- Show version.
- -a, --all
- All flash contents.
- -x, --execute
- Execute after load.
- -f, --force
- Force operation.
FAQ
What is the picotool command used for?
picotool manages Raspberry Pi Pico and RP2040 devices. It loads firmware, reads device info, and controls boot mode. Device info shows chip details and running program. Binary info displays embedded metadata. Loading writes firmware to flash. UF2 and ELF formats are supported. Save extracts flash contents for backup. The entire flash or specific regions can be dumped. Verification compares device contents to a file. Useful for confirming successful programming.
How do I run a basic picotool example?
Run `picotool info` in a terminal, then adjust file names, paths, flags, or remote targets for your system.
What does info do in picotool?
Show device/file info.