2022-04-13 03:54:58 -04:00
|
|
|
### Via dfu-util
|
|
|
|
|
|
|
|
This board can programmed via DFU bootloader, using e.g. [dfu-util](http://dfu-util.sourceforge.net/).
|
|
|
|
To enter the DFU bootloader, double tap the reset (blue) button, or you can use `machine.bootloader()` from the MicroPython REPL.
|
|
|
|
|
|
|
|
```bash
|
2022-10-17 07:14:03 -04:00
|
|
|
dfu-util -w -a 0 -d 2341:035b -D build-ARDUINO_PORTENTA_H7/firmware.dfu
|
2022-04-13 03:54:58 -04:00
|
|
|
```
|
|
|
|
|
|
|
|
Or from MicroPython source repository:
|
|
|
|
|
|
|
|
```bash
|
|
|
|
make BOARD=ARDUINO_PORTENTA_H7 deploy
|
|
|
|
```
|