# Troubleshooting

## I saved my updated code in Mu but nothing happened?

Try hitting the reset button on your Breadstick, it's the button closest to the USB-C port.

## My Breadstick isn't showing up as a CircuitPy drive, it shows up as a USB mass storage device?

Sometimes the flash memory chip can get corrupted, it just needs to be nuked.

<details>

<summary>Wipe the flash via CircuitPython REPL commands</summary>

Launch Mu and open the serial window. Click into the serial window and type Ctrl-C to send a keyboard interrup to the program currently running on your Breadstick, then press any key to enter REPL mode, the LEDs on your Breadstick will turn white. Inside the REPL, send the following lines of Python code. WARNING - this will overwrite your code.py to with a simple "Hello World" program.

import storage

storage.erase\_filesystem()

More Info: <https://docs.circuitpython.org/en/latest/docs/troubleshooting.html>

</details>

<details>

<summary>Wipe the flash via DFU mode and Raspberry Pi Foundations nuke.uf2 file</summary>

While holding down the Boot button, click the Reset button to boot into DFU mode. Copy the Raspberry Pi Foundation's nuke.uf2 file into the RPI-RP2 drive.

<https://www.raspberrypi.com/documentation/microcontrollers/raspberry-pi-pico.html#resetting-flash-memory>

</details>

###


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://learn.breadstick.ca/breadstick/breadsticks/troubleshooting.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
