Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 4d41338

Browse filesBrowse files
committed
Fix esp32 board manager URL
1 parent 7daa968 commit 4d41338
Copy full SHA for 4d41338

File tree

3 files changed

+3
-2
lines changed
Filter options

3 files changed

+3
-2
lines changed

‎CHANGELOG.md

Copy file name to clipboardExpand all lines: CHANGELOG.md
+1Lines changed: 1 addition & 0 deletions
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

Copy file name to clipboardExpand all lines: misc/default.yml
+1-1Lines changed: 1 addition & 1 deletion
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

Copy file name to clipboardExpand all lines: spec/ci_config_spec.rb
+1-1Lines changed: 1 addition & 1 deletion
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 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.