Skip to content

Latest commit

 

History

History

Bootloader

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

Bootloader

Pico’s BOOTSEL mode lives in read-only memory inside the RP2040 chip, and can’t be overwritten accidentally. No matter what, if you hold down the BOOTSEL button when you plug in your Pico, it will appear as a drive onto which you can drag a new UF2 file. There is no way to brick the board through software. However, there are some circumstances where you might want to make sure your Flash memory is empty. You can do this by dragging and dropping a special UF2 binary onto your Pico when it is in mass storage mode.

Let's start!

  • Download the MicroPython UF2 file from the Raspberry Pi website
  • Hold down the BOOTSEL button on your Pico and plug it into your computer's USB port.
  • Open Explorer, and open the RPI-RP2 directory like you would any other hard drive
  • Drag and drop the UF2 file into the RPI-RP2 directory

Code on GitHub

You can start here.