Skip to content

Commit 4d41338

Browse files
committed
Fix esp32 board manager URL
1 parent 7daa968 commit 4d41338

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
1919

2020
### Fixed
2121
- Warnings about directory name mismatches are now based on proper comparison of strings
22+
- Now using the recommended "stable" URL for the `esp32` board family
2223

2324
### Security
2425

misc/default.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ packages:
1616
adafruit:samd:
1717
url: https://adafruit.github.io/arduino-board-index/package_adafruit_index.json
1818
esp32:esp32:
19-
url: https://dl.espressif.com/dl/package_esp32_index.json
19+
url: https://raw.githubusercontent.com/espressif/arduino-esp32/gh-pages/package_esp32_index.json
2020

2121
platforms:
2222

spec/ci_config_spec.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929

3030
expect(default_config.package_url("adafruit:avr")).to eq("https://adafruit.github.io/arduino-board-index/package_adafruit_index.json")
3131
expect(default_config.package_url("adafruit:samd")).to eq("https://adafruit.github.io/arduino-board-index/package_adafruit_index.json")
32-
expect(default_config.package_url("esp32:esp32")).to eq("https://dl.espressif.com/dl/package_esp32_index.json")
32+
expect(default_config.package_url("esp32:esp32")).to eq("https://raw.githubusercontent.com/espressif/arduino-esp32/gh-pages/package_esp32_index.json")
3333
expect(default_config.platforms_to_build).to match(["uno", "due", "zero", "leonardo", "m4", "esp32", "esp8266", "mega2560"])
3434
expect(default_config.platforms_to_unittest).to match(["uno", "due", "zero", "leonardo"])
3535
expect(default_config.aux_libraries_for_build).to match([])

0 commit comments

Comments
 (0)