Skip to content

Commit d4e2029

Browse files
authored
Add support for ArduinoIDE 2.0.0 (#6506)
OTA is not yet working properly on the new IDE. Info: arduino/arduino-ide#740 (comment)
1 parent f1acc43 commit d4e2029

File tree

4 files changed

+894
-10
lines changed

4 files changed

+894
-10
lines changed

.github/scripts/update-version.sh

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
#!/bin/bash
22

3+
# For reference: add tools for all boards by replacing one line in each board
4+
# "[board].upload.tool=esptool_py" to "[board].upload.tool=esptool_py\n[board].upload.tool.default=esptool_py\n[board].upload.tool.network=esp_ota"
5+
#cat boards.txt | sed "s/\([a-zA-Z0-9_\-]*\)\.upload\.tool\=esptool_py/\1\.upload\.tool\=esptool_py\\n\1\.upload\.tool\.default\=esptool_py\\n\1\.upload\.tool\.network\=esp_ota/"
6+
37
if [ ! $# -eq 3 ]; then
48
echo "Bad number of arguments: $#" >&2
59
echo "usage: $0 <major> <minor> <patch>" >&2

0 commit comments

Comments
 (0)