Skip to content

bootloaders: change instruction to match OSS release #114

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 30, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 28 additions & 0 deletions bootloaders/PORTENTA_H33/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
:floppy_disk: `bootloaders/PORTENTA_C33`
====================================
Compiled with
```bash
git clone https://github.com/arduino/arduino-renesas-bootloader
git clone https://github.com/hathach/tinyusb
cd tinyusb
# This step is temporary
patch -p1 < ../arduino-renesas-bootloader/0001-fix-arduino-bootloaders.patch
python tools/get_deps.py ra
cd ..
cd arduino-renesas-bootloader
TINYUSB_ROOT=$PWD/../tinyusb make -f Makefile.c33
```

:rocket: `How to load bootloader`
====================================

Using any Portenta carrier **with USB A connector**, toggle the BOOT dip-switch, connect to the PC using a very uncommon USB-A to USB-A cable and reset the board.
The board will enumerate as Renesas RA USB Boot

Then flash the bootloader with [`rfp-cli`](https://www.renesas.com/us/en/software-tool/renesas-flash-programmer-programming-gui#download)
```
rfp-cli -device ra -port $portname -p dfu_c33.hex
```

Otherwise, the same hex file can be loaded through the SWD port (using a Jlink for example)

9 changes: 0 additions & 9 deletions bootloaders/PORTENTA_H33/README.txt

This file was deleted.

20 changes: 10 additions & 10 deletions bootloaders/UNO_R4/README.md
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
:floppy_disk: `bootloaders/UNO_R4`
====================================
Sources for Uno R4 WIFi at [email protected]:bcmi-labs/tinyusb.git , commit 185ae31ff15a1013a5a890455220a29bad1ed209

Compiled with
```bash
cd examples/device/dfu && make BOARD=santiago_composta
```

Sources for Uno R4 Minima at [email protected]:bcmi-labs/tinyusb.git , commit b80fa8f4027c5aa4d9af5720a82e9238d8f792bb

Compiled with
```bash
cd examples/device/dfu && make BOARD=santiago
git clone https://github.com/arduino/arduino-renesas-bootloader
git clone https://github.com/hathach/tinyusb
cd tinyusb
# This step is temporary
patch -p1 < ../arduino-renesas-bootloader/0001-fix-arduino-bootloaders.patch
python tools/get_deps.py ra
cd ..
cd arduino-renesas-bootloader
TINYUSB_ROOT=$PWD/../tinyusb make -f Makefile.minima
# TINYUSB_ROOT=$PWD/../tinyusb make -f Makefile.wifi
```

:rescue_worker_helmet: `How to update ESP32-S3 firmware`
Expand Down