Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
cec2650
Bootloader reloading (non-AVR boards)
Hannes7eicher Dec 21, 2022
414e114
Structural FIxes
Hannes7eicher Dec 22, 2022
d6a3c8e
Content adjustments
Hannes7eicher Dec 22, 2022
da79427
.md spacing fixes
Hannes7eicher Dec 22, 2022
9f2d9c4
Content Adjustments
Hannes7eicher Dec 22, 2022
c7ac70e
missing space
Hannes7eicher Dec 22, 2022
88efd7f
updating header
Hannes7eicher Dec 22, 2022
d21035a
Update content/tutorials/generic/bootloader-reloading/bootloader-relo…
Hannes7eicher Jan 12, 2023
463444e
Update content/tutorials/generic/bootloader-reloading/bootloader-relo…
Hannes7eicher Jan 12, 2023
eaef233
Update content/tutorials/generic/bootloader-reloading/bootloader-relo…
Hannes7eicher Jan 12, 2023
e73fc8c
Update content/tutorials/generic/bootloader-reloading/bootloader-relo…
Hannes7eicher Jan 12, 2023
2665e0d
Update content/tutorials/generic/bootloader-reloading/bootloader-relo…
Hannes7eicher Jan 12, 2023
162da4c
Update content/tutorials/generic/bootloader-reloading/bootloader-relo…
Hannes7eicher Jan 12, 2023
e09c2c5
Update content/tutorials/generic/bootloader-reloading/bootloader-relo…
Hannes7eicher Jan 12, 2023
17e7409
Update content/tutorials/generic/bootloader-reloading/bootloader-relo…
Hannes7eicher Jan 12, 2023
5961cd8
Adding alternative approach for bootloader burning
Hannes7eicher Jan 12, 2023
c58549f
Fix md syntax
Hannes7eicher Jan 12, 2023
5d89e4d
Mergin both approaches
Hannes7eicher Jan 13, 2023
b1551ee
Fix md syntax
Hannes7eicher Jan 13, 2023
fd4acf4
Update content/tutorials/generic/bootloader-reloading/bootloader-relo…
Hannes7eicher Jan 16, 2023
c89851a
Update content/tutorials/generic/bootloader-reloading/bootloader-relo…
Hannes7eicher Jan 16, 2023
fba50c8
Update content/tutorials/generic/bootloader-reloading/bootloader-relo…
Hannes7eicher Jan 16, 2023
f76e567
Update content/tutorials/generic/bootloader-reloading/bootloader-relo…
Hannes7eicher Jan 16, 2023
7376403
Update content/tutorials/generic/bootloader-reloading/bootloader-relo…
Hannes7eicher Jan 16, 2023
7227edb
Update content/tutorials/generic/bootloader-reloading/bootloader-relo…
Hannes7eicher Jan 16, 2023
3827b0b
Change the order, showing the user the easier approach first
Hannes7eicher Jan 16, 2023
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix md syntax
  • Loading branch information
Hannes7eicher committed Jan 12, 2023
commit c58549f0cc823b2b68c10a7efc8da254208e6564
Original file line number Diff line number Diff line change
Expand Up @@ -83,4 +83,4 @@ For the [Nano 33 IoT](https://store.arduino.cc/products/arduino-nano-33-iot?_gl=
- Plug the USB cable of the programmer Arduino board into your computer.
- Select **Tools > Serial Monitor** from the Arduino IDE's menus. You should now see the Serial Monitor output showing the target board detected, and the bootloader file flashed to it successfully.
- Unplug the programmer Arduino board from your computer.
- Disconnect the programmer Arduino board from the target Arduino board.
- Disconnect the programmer Arduino board from the target Arduino board.
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ In this tutorial, we will learn how to burn the bootloader on boards that use th
- Select **Sketch > Include Library > Manage Libraries...** from the Arduino IDE menus.
- Wait for any index updates to finish.
- In the **"Filter your search..."** field, type `Adafruit DAP library`
- Press **<kbd>Enter</kbd>**.
- Press **Enter**.
- Click on "**Adafruit DAP library by Adafruit**".
- Click the **<kbd>Install</kbd>** button.
- Click the **Install** button.
- Wait for the installation to finish.
- Close **Library Manager**.
- Select **File > Examples > Adafruit DAP library > samd21 > flash_MKR_bootloaders** from the Arduino IDE menus.
Expand Down Expand Up @@ -54,7 +54,7 @@ In this tutorial, we will learn how to burn the bootloader on boards that use th
- Select **Tools > Serial Monitor** from the Arduino IDE menus.
- Select "No line ending" from the dropdown menu near the bottom right corner of the **Serial Monitor** window.

You should see some instructions for using the sketch in the **Serial Monitor** output field. <br />
You should see some instructions for using the sketch in the **Serial Monitor** output field.
This includes a menu of the boards supported by the sketch:
```text
[...]
Expand All @@ -71,7 +71,7 @@ You should see some instructions for using the sketch in the **Serial Monitor**
Find your **target** Arduino board on the list and note the code written to the left of it.

- Type the code for the **target** Arduino board in the message field of **Serial Monitor**.
- Press the <kbd>**Enter** key.
- Press the **Enter** key.
- The Serial Monitor output field should now show the board you selected and the progress of flashing the bootloader to the **target** Arduino board.
Wait for it to show "Done!"
- Unplug the **programmer** Arduino board from your computer.
Expand Down