Skip to content
Merged
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
Update content/tutorials/generic/bootloader-reloading/bootloader-relo…
…ading.md Co-authored-by: per1234 <accounts@perglass.com>
  • Loading branch information
Hannes7eicher and per1234 authored Jan 12, 2023
commit d21035a2ded81237c930348131903f0cd5d2ed2d
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ For the [Nano 33 IoT](https://store.arduino.cc/products/arduino-nano-33-iot?_gl=
- Select **File > Examples > Adafruit DAP library > samd21 > flash_from_SD** from the Arduino IDE's menus.
- Change this line: ```#define SD_CS 4``` according to the Arduino pin connected to the SD CS pin.

If your board has a built-in SD slot (e.g., [MKR Zero 9](https://store.arduino.cc/products/arduino-mkr-zero-i2s-bus-sd-for-sound-music-digital-audio-data)), then you can change this line:
If your board has a built-in SD slot (e.g., [MKR Zero](https://store.arduino.cc/products/arduino-mkr-zero-i2s-bus-sd-for-sound-music-digital-audio-data)), then you can change this line:

```
(!SD.begin(SD_CS)) {
Expand Down