-
@joshua, I am trying to follow the instructions to get into regular RP2040 bootloader mode from MicroPython, I did this: port is : /dev/ttyACM0 Type [C-a] [C-h] to see available commands I thought it would put me into bootloader mode, but I am in MicroPython still, the same as if I had left off the --baud 1200 argument. Any tips? Rob |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hello! The MicroPython UART does not have this extra feature, so you would need to use a MicorPython command for this: import machine
machine.bootloader() If you need to automate it, you can run this from the command line:
|
Beta Was this translation helpful? Give feedback.
Hello! The MicroPython UART does not have this extra feature, so you would need to use a MicorPython command for this:
If you need to automate it, you can run this from the command line: