MicroPython/CircuitPython, enter bootloader programmatically, without BOOT button.
MicroPython/CircuitPython, enter bootloader programmatically, without BOOT button.
(Tested on Raspberry Pi Pico)
In case the Raspberry Pi Pico is flashed MicroPython:
import machine
machine.bootloader()
In case of CircuitPython:
import microcontroller
microcontroller.on_next_reset(microcontroller.RunMode.BOOTLOADER)
microcontroller.reset()
Comments
Post a Comment