-
Notifications
You must be signed in to change notification settings - Fork 7.7k
Commit ba591fd
authored
Added non-destructive TinyUF2 support for UM ESP32-S3 boards (#6668)
Implemented a new method for allowing folks to preserve their TinyUF2 bootloader setup when flashing their boards via Arduino IDE, without being locked out of not using it if they want to use a different partition.
Adafruit had already added support for keeping (reflashing) the TinyUF2 bootloader when flashing via Arduino IDE (thanks @ladyada ), but the issue with it is it doesn't allow users to not choose to use it. Even if they select a specific partition scheme from the partition drop down list, it ignores that selection and only does the TinyUF2 partitioning/bootloader thing.
We wanted to let users choose between keeping their TinyUF2 partitioning and bootloader, or choose another partition scheme and have the TinyUF2 support disabled and just operate like they would expect.
We've implemented this by adding the TinyUF2 support as a partition scheme option, and using these build options in platform.txt to choose to use teh UF2 path or use the standard path.1 parent 4453ca5 commit ba591fd
File tree
11 files changed
+96
-242
lines changed- variants
- um_feathers3
- um_pros3
- um_tinys3
11 files changed
+96
-242
lines changedLines changed: 60 additions & 238 deletions
Large diffs are not rendered by default.
Lines changed: 6 additions & 4 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
127 | 127 |
| |
128 | 128 |
| |
129 | 129 |
| |
130 | + | ||
131 | + | ||
130 | 132 |
| |
131 | 133 |
| |
132 | 134 |
| |
| |||
140 | 142 |
| |
141 | 143 |
| |
142 | 144 |
| |
143 | - | ||
145 | + | ||
144 | 146 |
| |
145 | 147 |
| |
146 | 148 |
| |
147 | - | ||
149 | + | ||
148 | 150 |
| |
149 | 151 |
| |
150 | 152 |
| |
151 | - | ||
152 | - | ||
153 | + | ||
154 | + | ||
153 | 155 |
| |
154 | 156 |
| |
155 | 157 |
| |
|
Binary file not shown.
Lines changed: 10 additions & 0 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
1 | + | ||
2 | + | ||
3 | + | ||
4 | + | ||
5 | + | ||
6 | + | ||
7 | + | ||
8 | + | ||
9 | + | ||
10 | + |
Binary file not shown.
Binary file not shown.
Lines changed: 10 additions & 0 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
1 | + | ||
2 | + | ||
3 | + | ||
4 | + | ||
5 | + | ||
6 | + | ||
7 | + | ||
8 | + | ||
9 | + | ||
10 | + |
Binary file not shown.
Binary file not shown.
Lines changed: 10 additions & 0 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
1 | + | ||
2 | + | ||
3 | + | ||
4 | + | ||
5 | + | ||
6 | + | ||
7 | + | ||
8 | + | ||
9 | + | ||
10 | + |
0 commit comments