Compare commits
11 commits
master
...
wipper-3.0
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
3bfa3e0a56 | ||
|
|
ebe34f6ab8 | ||
|
|
5042912fa6 | ||
|
|
b12bfa3361 | ||
|
|
2a1bd4ca36 | ||
|
|
f450243b27 | ||
|
|
3e5c6ee6a7 | ||
|
|
19cbe8bb49 | ||
|
|
32d451d75b | ||
|
|
d35d4447a7 | ||
|
|
0a554933d0 |
47 changed files with 85 additions and 80 deletions
|
|
@ -21,7 +21,8 @@ extern "C" {
|
|||
|
||||
#include "sdkconfig.h"
|
||||
|
||||
#ifndef BOARD_HAS_PSRAM
|
||||
// Clear flags in Arduino IDE when PSRAM is disabled
|
||||
#if defined(ESP32_ARDUINO_LIB_BUILDER) && !defined(BOARD_HAS_PSRAM)
|
||||
#ifdef CONFIG_SPIRAM_SUPPORT
|
||||
#undef CONFIG_SPIRAM_SUPPORT
|
||||
#endif
|
||||
|
|
|
|||
|
|
@ -165,7 +165,11 @@ void deinit_usb_hal() {
|
|||
|
||||
esp_err_t tinyusb_driver_install(const tinyusb_config_t *config) {
|
||||
init_usb_hal(config->external_phy);
|
||||
if (!tusb_init()) {
|
||||
tusb_rhport_init_t tinit;
|
||||
memset(&tinit, 0, sizeof(tusb_rhport_init_t));
|
||||
tinit.role = TUSB_ROLE_DEVICE;
|
||||
tinit.speed = TUSB_SPEED_FULL;
|
||||
if (!tusb_init(0, &tinit)) {
|
||||
log_e("Can't initialize the TinyUSB stack.");
|
||||
return ESP_FAIL;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -23,7 +23,7 @@ extern "C" {
|
|||
/** Minor version number (x.X.x) */
|
||||
#define ESP_ARDUINO_VERSION_MINOR 0
|
||||
/** Patch version number (x.x.X) */
|
||||
#define ESP_ARDUINO_VERSION_PATCH 5
|
||||
#define ESP_ARDUINO_VERSION_PATCH 7
|
||||
|
||||
/**
|
||||
* Macro to convert ARDUINO version number into an integer
|
||||
|
|
|
|||
|
|
@ -64,7 +64,7 @@ dependencies:
|
|||
rules:
|
||||
- if: "target != esp32c2"
|
||||
espressif/esp_rainmaker:
|
||||
version: "^1.0.0"
|
||||
version: "^1.5.0"
|
||||
rules:
|
||||
- if: "target != esp32c2"
|
||||
espressif/rmaker_common:
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
name=ArduinoOTA
|
||||
version=3.0.5
|
||||
version=3.0.7
|
||||
author=Ivan Grokhotkov and Hristo Gochkov
|
||||
maintainer=Hristo Gochkov <hristo@espressif.com>
|
||||
sentence=Enables Over The Air upgrades, via wifi and espota.py UDP request/TCP download.
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
name=ESP32 Async UDP
|
||||
version=3.0.5
|
||||
version=3.0.7
|
||||
author=Me-No-Dev
|
||||
maintainer=Me-No-Dev
|
||||
sentence=Async UDP Library for ESP32
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
name=BLE
|
||||
version=3.0.5
|
||||
version=3.0.7
|
||||
author=Neil Kolban <kolban1@kolban.com>
|
||||
maintainer=Dariusz Krempa <esp32@esp32.eu.org>
|
||||
sentence=BLE functions for ESP32
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
name=BluetoothSerial
|
||||
version=3.0.5
|
||||
version=3.0.7
|
||||
author=Evandro Copercini
|
||||
maintainer=Evandro Copercini
|
||||
sentence=Simple UART to Classical Bluetooth bridge for ESP32
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
name=DNSServer
|
||||
version=3.0.5
|
||||
version=3.0.7
|
||||
author=Kristijan Novoselić
|
||||
maintainer=Kristijan Novoselić, <kristijan.novoselic@gmail.com>
|
||||
sentence=A simple DNS server for ESP32.
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
name=EEPROM
|
||||
version=3.0.5
|
||||
version=3.0.7
|
||||
author=Ivan Grokhotkov
|
||||
maintainer=Paolo Becchi <pbecchi@aerobusiness.it>
|
||||
sentence=Enables reading and writing data a sequential, addressable FLASH storage
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
name=ESP32
|
||||
version=3.0.5
|
||||
version=3.0.7
|
||||
author=Hristo Gochkov, Ivan Grokhtkov
|
||||
maintainer=Hristo Gochkov <hristo@espressif.com>
|
||||
sentence=ESP32 sketches examples
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
name=ESP_I2S
|
||||
version=3.0.5
|
||||
version=3.0.7
|
||||
author=me-no-dev
|
||||
maintainer=me-no-dev
|
||||
sentence=Library for ESP I2S communication
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
name=ESP_NOW
|
||||
version=3.0.5
|
||||
version=3.0.7
|
||||
author=me-no-dev
|
||||
maintainer=P-R-O-C-H-Y
|
||||
sentence=Library for ESP_NOW
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
name=ESP_SR
|
||||
version=3.0.5
|
||||
version=3.0.7
|
||||
author=me-no-dev
|
||||
maintainer=me-no-dev
|
||||
sentence=Library for ESP Sound Recognition
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
name=ESPmDNS
|
||||
version=3.0.5
|
||||
version=3.0.7
|
||||
author=Hristo Gochkov, Ivan Grokhtkov
|
||||
maintainer=Hristo Gochkov <hristo@espressif.com>
|
||||
sentence=ESP32 mDNS Library
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
name=Ethernet
|
||||
version=3.0.5
|
||||
version=3.0.7
|
||||
author=Hristo Gochkov
|
||||
maintainer=Hristo Gochkov <hristo@espressif.com>
|
||||
sentence=Enables network connection (local and Internet) using the ESP32 Ethernet.
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
name=FFat
|
||||
version=3.0.5
|
||||
version=3.0.7
|
||||
author=Hristo Gochkov, Ivan Grokhtkov, Larry Bernstone
|
||||
maintainer=Hristo Gochkov <hristo@espressif.com>
|
||||
sentence=ESP32 FAT on Flash File System
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
name=FS
|
||||
version=3.0.5
|
||||
version=3.0.7
|
||||
author=Hristo Gochkov, Ivan Grokhtkov
|
||||
maintainer=Hristo Gochkov <hristo@espressif.com>
|
||||
sentence=ESP32 File System
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
name=HTTPClient
|
||||
version=3.0.5
|
||||
version=3.0.7
|
||||
author=Markus Sattler
|
||||
maintainer=Markus Sattler
|
||||
sentence=HTTP Client for ESP32
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
name=HTTPUpdate
|
||||
version=3.0.5
|
||||
version=3.0.7
|
||||
author=Markus Sattler
|
||||
maintainer=Markus Sattler
|
||||
sentence=Http Update for ESP32
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
name=HTTPUpdateServer
|
||||
version=3.0.5
|
||||
version=3.0.7
|
||||
author=Hristo Kapanakov
|
||||
maintainer=
|
||||
sentence=Simple HTTP Update server based on the WebServer
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
name=ESP Insights
|
||||
version=3.0.5
|
||||
version=3.0.7
|
||||
author=Sanket Wadekar <sanket.wadekar@espressif.com>
|
||||
maintainer=Sanket Wadekar <sanket.wadekar@espressif.com>
|
||||
sentence=ESP Insights
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
name=LittleFS
|
||||
version=3.0.5
|
||||
version=3.0.7
|
||||
author=
|
||||
maintainer=
|
||||
sentence=LittleFS for esp32
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
name=NetBIOS
|
||||
version=3.0.5
|
||||
version=3.0.7
|
||||
author=Pablo@xpablo.cz
|
||||
maintainer=Hristo Gochkov<hristo@espressif.com>
|
||||
sentence=Enables NBNS (NetBIOS) name resolution.
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
name=Networking
|
||||
version=3.0.5
|
||||
version=3.0.7
|
||||
author=Hristo Gochkov
|
||||
maintainer=Hristo Gochkov <hristo@espressif.com>
|
||||
sentence=General network management library.
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
name=NetworkClientSecure
|
||||
version=3.0.5
|
||||
version=3.0.7
|
||||
author=Evandro Luis Copercini
|
||||
maintainer=Github Community
|
||||
sentence=Enables secure network connection (local and Internet) using the ESP32 built-in WiFi.
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
name=OpenThread
|
||||
version=3.0.5
|
||||
version=3.0.7
|
||||
author=Rodrigo Garcia | GitHub @SuGlider
|
||||
maintainer=Rodrigo Garcia <Rodrigo.Garcia@espressif.com>
|
||||
sentence=Library for OpenThread Network on ESP32.
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
name=PPP
|
||||
version=3.0.5
|
||||
version=3.0.7
|
||||
author=Hristo Gochkov
|
||||
maintainer=Hristo Gochkov <hristo@espressif.com>
|
||||
sentence=Enables network connection using GSM Modem.
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
name=Preferences
|
||||
version=3.0.5
|
||||
version=3.0.7
|
||||
author=Hristo Gochkov
|
||||
maintainer=Hristo Gochkov <hristo@espressif.com>
|
||||
sentence=Provides friendly access to ESP32's Non-Volatile Storage
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
name=ESP RainMaker
|
||||
version=3.0.5
|
||||
version=3.0.7
|
||||
author=Sweety Mhaiske <switi.mhaiske@espressif.com>
|
||||
maintainer=Hristo Gochkov <hristo@espressif.com>
|
||||
sentence=ESP RainMaker Support
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
name=SD
|
||||
version=3.0.5
|
||||
version=3.0.7
|
||||
author=Arduino, SparkFun
|
||||
maintainer=Arduino <info@arduino.cc>
|
||||
sentence=Enables reading and writing on SD cards. For all Arduino boards.
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
name=SD_MMC
|
||||
version=3.0.5
|
||||
version=3.0.7
|
||||
author=Hristo Gochkov, Ivan Grokhtkov
|
||||
maintainer=Hristo Gochkov <hristo@espressif.com>
|
||||
sentence=ESP32 SDMMC File System
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
name=SPI
|
||||
version=3.0.5
|
||||
version=3.0.7
|
||||
author=Hristo Gochkov
|
||||
maintainer=Hristo Gochkov <hristo@espressif.com>
|
||||
sentence=Enables the communication with devices that use the Serial Peripheral Interface (SPI) Bus. For all Arduino boards, BUT Arduino DUE.
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
name=SPIFFS
|
||||
version=3.0.5
|
||||
version=3.0.7
|
||||
author=Hristo Gochkov, Ivan Grokhtkov
|
||||
maintainer=Hristo Gochkov <hristo@espressif.com>
|
||||
sentence=ESP32 SPIFFS File System
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
name=SimpleBLE
|
||||
version=3.0.5
|
||||
version=3.0.7
|
||||
author=Hristo Gochkov
|
||||
maintainer=Hristo Gochkov <hristo@espressif.com>
|
||||
sentence=Provides really simple BLE advertizer with just on and off
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
name=TFLite Micro
|
||||
version=3.0.5
|
||||
version=3.0.7
|
||||
author=Sanket Wadekar
|
||||
maintainer=Sanket Wadekar
|
||||
sentence=TensorFlow Lite for Microcontrollers
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
name=Ticker
|
||||
version=3.0.5
|
||||
version=3.0.7
|
||||
author=Bert Melis
|
||||
maintainer=Hristo Gochkov <hristo@espressif.com>
|
||||
sentence=Allows to call functions with a given interval.
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
name=USB
|
||||
version=3.0.5
|
||||
version=3.0.7
|
||||
author=Hristo Gochkov
|
||||
maintainer=Hristo Gochkov <hristo@espressif.com>
|
||||
sentence=ESP32S2 USB Library
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
name=Update
|
||||
version=3.0.5
|
||||
version=3.0.7
|
||||
author=Hristo Gochkov
|
||||
maintainer=Hristo Gochkov <hristo@espressif.com>
|
||||
sentence=ESP32 Sketch Update Library
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
name=WebServer
|
||||
version=3.0.5
|
||||
version=3.0.7
|
||||
author=Ivan Grokhotkov
|
||||
maintainer=Ivan Grokhtkov <ivan@esp8266.com>
|
||||
sentence=Simple web server library
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
name=WiFi
|
||||
version=3.0.5
|
||||
version=3.0.7
|
||||
author=Hristo Gochkov
|
||||
maintainer=Hristo Gochkov <hristo@espressif.com>
|
||||
sentence=Enables network connection (local and Internet) using the ESP32 built-in WiFi.
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
name=WiFiProv
|
||||
version=3.0.5
|
||||
version=3.0.7
|
||||
author=Switi Mhaiske <sweetymhaiske@gmail.com>
|
||||
maintainer=Hristo Gochkov <hristo@espressif.com>
|
||||
sentence=Enables provisioning.
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
name=Wire
|
||||
version=3.0.5
|
||||
version=3.0.7
|
||||
author=Hristo Gochkov
|
||||
maintainer=Hristo Gochkov <hristo@espressif.com>
|
||||
sentence=Allows the communication between devices or sensors connected via Two Wire Interface Bus. For esp8266 boards.
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
name=Zigbee
|
||||
version=3.0.5
|
||||
version=3.0.7
|
||||
author=P-R-O-C-H-Y
|
||||
maintainer=Jan Procházka <jan.prochazka@espressif.com>
|
||||
sentence=Enables zigbee connection with the ESP32
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "framework-arduinoespressif32",
|
||||
"version": "3.0.5",
|
||||
"version": "3.0.7",
|
||||
"description": "Arduino Wiring-based Framework for the Espressif ESP32, ESP32-S and ESP32-C series of SoCs",
|
||||
"keywords": [
|
||||
"framework",
|
||||
|
|
|
|||
|
|
@ -42,7 +42,7 @@
|
|||
{
|
||||
"packager": "esp32",
|
||||
"name": "esp32-arduino-libs",
|
||||
"version": "idf-release_v5.1-33fbade6"
|
||||
"version": "idf-release_v5.1-632e0c2a"
|
||||
},
|
||||
{
|
||||
"packager": "esp32",
|
||||
|
|
@ -105,63 +105,63 @@
|
|||
"tools": [
|
||||
{
|
||||
"name": "esp32-arduino-libs",
|
||||
"version": "idf-release_v5.1-33fbade6",
|
||||
"version": "idf-release_v5.1-632e0c2a",
|
||||
"systems": [
|
||||
{
|
||||
"host": "i686-mingw32",
|
||||
"url": "https://github.com/espressif/esp32-arduino-lib-builder/releases/download/idf-release_v5.1/esp32-arduino-libs-idf-release_v5.1-33fbade6.zip",
|
||||
"archiveFileName": "esp32-arduino-libs-idf-release_v5.1-33fbade6.zip",
|
||||
"checksum": "SHA-256:578f325fa9fca635d9c6c3b19726cb26077751e3155b677317bde2e0b371df7d",
|
||||
"size": "309285463"
|
||||
"url": "https://github.com/espressif/esp32-arduino-lib-builder/releases/download/idf-release_v5.1/esp32-arduino-libs-idf-release_v5.1-632e0c2a.zip",
|
||||
"archiveFileName": "esp32-arduino-libs-idf-release_v5.1-632e0c2a.zip",
|
||||
"checksum": "SHA-256:41f67e1c11f68b57d651955c93b63d6a8d35808ce6aff6ba3d1e1476178758f2",
|
||||
"size": "309895581"
|
||||
},
|
||||
{
|
||||
"host": "x86_64-mingw32",
|
||||
"url": "https://github.com/espressif/esp32-arduino-lib-builder/releases/download/idf-release_v5.1/esp32-arduino-libs-idf-release_v5.1-33fbade6.zip",
|
||||
"archiveFileName": "esp32-arduino-libs-idf-release_v5.1-33fbade6.zip",
|
||||
"checksum": "SHA-256:578f325fa9fca635d9c6c3b19726cb26077751e3155b677317bde2e0b371df7d",
|
||||
"size": "309285463"
|
||||
"url": "https://github.com/espressif/esp32-arduino-lib-builder/releases/download/idf-release_v5.1/esp32-arduino-libs-idf-release_v5.1-632e0c2a.zip",
|
||||
"archiveFileName": "esp32-arduino-libs-idf-release_v5.1-632e0c2a.zip",
|
||||
"checksum": "SHA-256:41f67e1c11f68b57d651955c93b63d6a8d35808ce6aff6ba3d1e1476178758f2",
|
||||
"size": "309895581"
|
||||
},
|
||||
{
|
||||
"host": "arm64-apple-darwin",
|
||||
"url": "https://github.com/espressif/esp32-arduino-lib-builder/releases/download/idf-release_v5.1/esp32-arduino-libs-idf-release_v5.1-33fbade6.zip",
|
||||
"archiveFileName": "esp32-arduino-libs-idf-release_v5.1-33fbade6.zip",
|
||||
"checksum": "SHA-256:578f325fa9fca635d9c6c3b19726cb26077751e3155b677317bde2e0b371df7d",
|
||||
"size": "309285463"
|
||||
"url": "https://github.com/espressif/esp32-arduino-lib-builder/releases/download/idf-release_v5.1/esp32-arduino-libs-idf-release_v5.1-632e0c2a.zip",
|
||||
"archiveFileName": "esp32-arduino-libs-idf-release_v5.1-632e0c2a.zip",
|
||||
"checksum": "SHA-256:41f67e1c11f68b57d651955c93b63d6a8d35808ce6aff6ba3d1e1476178758f2",
|
||||
"size": "309895581"
|
||||
},
|
||||
{
|
||||
"host": "x86_64-apple-darwin",
|
||||
"url": "https://github.com/espressif/esp32-arduino-lib-builder/releases/download/idf-release_v5.1/esp32-arduino-libs-idf-release_v5.1-33fbade6.zip",
|
||||
"archiveFileName": "esp32-arduino-libs-idf-release_v5.1-33fbade6.zip",
|
||||
"checksum": "SHA-256:578f325fa9fca635d9c6c3b19726cb26077751e3155b677317bde2e0b371df7d",
|
||||
"size": "309285463"
|
||||
"url": "https://github.com/espressif/esp32-arduino-lib-builder/releases/download/idf-release_v5.1/esp32-arduino-libs-idf-release_v5.1-632e0c2a.zip",
|
||||
"archiveFileName": "esp32-arduino-libs-idf-release_v5.1-632e0c2a.zip",
|
||||
"checksum": "SHA-256:41f67e1c11f68b57d651955c93b63d6a8d35808ce6aff6ba3d1e1476178758f2",
|
||||
"size": "309895581"
|
||||
},
|
||||
{
|
||||
"host": "x86_64-pc-linux-gnu",
|
||||
"url": "https://github.com/espressif/esp32-arduino-lib-builder/releases/download/idf-release_v5.1/esp32-arduino-libs-idf-release_v5.1-33fbade6.zip",
|
||||
"archiveFileName": "esp32-arduino-libs-idf-release_v5.1-33fbade6.zip",
|
||||
"checksum": "SHA-256:578f325fa9fca635d9c6c3b19726cb26077751e3155b677317bde2e0b371df7d",
|
||||
"size": "309285463"
|
||||
"url": "https://github.com/espressif/esp32-arduino-lib-builder/releases/download/idf-release_v5.1/esp32-arduino-libs-idf-release_v5.1-632e0c2a.zip",
|
||||
"archiveFileName": "esp32-arduino-libs-idf-release_v5.1-632e0c2a.zip",
|
||||
"checksum": "SHA-256:41f67e1c11f68b57d651955c93b63d6a8d35808ce6aff6ba3d1e1476178758f2",
|
||||
"size": "309895581"
|
||||
},
|
||||
{
|
||||
"host": "i686-pc-linux-gnu",
|
||||
"url": "https://github.com/espressif/esp32-arduino-lib-builder/releases/download/idf-release_v5.1/esp32-arduino-libs-idf-release_v5.1-33fbade6.zip",
|
||||
"archiveFileName": "esp32-arduino-libs-idf-release_v5.1-33fbade6.zip",
|
||||
"checksum": "SHA-256:578f325fa9fca635d9c6c3b19726cb26077751e3155b677317bde2e0b371df7d",
|
||||
"size": "309285463"
|
||||
"url": "https://github.com/espressif/esp32-arduino-lib-builder/releases/download/idf-release_v5.1/esp32-arduino-libs-idf-release_v5.1-632e0c2a.zip",
|
||||
"archiveFileName": "esp32-arduino-libs-idf-release_v5.1-632e0c2a.zip",
|
||||
"checksum": "SHA-256:41f67e1c11f68b57d651955c93b63d6a8d35808ce6aff6ba3d1e1476178758f2",
|
||||
"size": "309895581"
|
||||
},
|
||||
{
|
||||
"host": "aarch64-linux-gnu",
|
||||
"url": "https://github.com/espressif/esp32-arduino-lib-builder/releases/download/idf-release_v5.1/esp32-arduino-libs-idf-release_v5.1-33fbade6.zip",
|
||||
"archiveFileName": "esp32-arduino-libs-idf-release_v5.1-33fbade6.zip",
|
||||
"checksum": "SHA-256:578f325fa9fca635d9c6c3b19726cb26077751e3155b677317bde2e0b371df7d",
|
||||
"size": "309285463"
|
||||
"url": "https://github.com/espressif/esp32-arduino-lib-builder/releases/download/idf-release_v5.1/esp32-arduino-libs-idf-release_v5.1-632e0c2a.zip",
|
||||
"archiveFileName": "esp32-arduino-libs-idf-release_v5.1-632e0c2a.zip",
|
||||
"checksum": "SHA-256:41f67e1c11f68b57d651955c93b63d6a8d35808ce6aff6ba3d1e1476178758f2",
|
||||
"size": "309895581"
|
||||
},
|
||||
{
|
||||
"host": "arm-linux-gnueabihf",
|
||||
"url": "https://github.com/espressif/esp32-arduino-lib-builder/releases/download/idf-release_v5.1/esp32-arduino-libs-idf-release_v5.1-33fbade6.zip",
|
||||
"archiveFileName": "esp32-arduino-libs-idf-release_v5.1-33fbade6.zip",
|
||||
"checksum": "SHA-256:578f325fa9fca635d9c6c3b19726cb26077751e3155b677317bde2e0b371df7d",
|
||||
"size": "309285463"
|
||||
"url": "https://github.com/espressif/esp32-arduino-lib-builder/releases/download/idf-release_v5.1/esp32-arduino-libs-idf-release_v5.1-632e0c2a.zip",
|
||||
"archiveFileName": "esp32-arduino-libs-idf-release_v5.1-632e0c2a.zip",
|
||||
"checksum": "SHA-256:41f67e1c11f68b57d651955c93b63d6a8d35808ce6aff6ba3d1e1476178758f2",
|
||||
"size": "309895581"
|
||||
}
|
||||
]
|
||||
},
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
name=ESP32 Arduino
|
||||
version=3.0.5
|
||||
version=3.0.7
|
||||
|
||||
tools.esp32-arduino-libs.path={runtime.platform.path}/tools/esp32-arduino-libs
|
||||
tools.esp32-arduino-libs.path.windows={runtime.platform.path}\tools\esp32-arduino-libs
|
||||
|
|
|
|||
Loading…
Reference in a new issue