- 25 Oct, 2021 4 commits
-
-
Anthony Elder authored
This adds a function to WiFiClientSecure to set the ALPN protocol. This is required for an MQTT client to connect to AWS IoT when using an AWS Custom Authorizer, as described here. Example code snippet: ... WiFiClientSecure wiFiClient; // ALPN protocol, needed with AWS custom authorizer const char *aws_protos[] = {"mqtt", NULL}; void setup() { wiFiClient.setCACert(AWSCAPEM); wiFiClient.setAlpnProtocols(aws_protos); } ...
-
Hideaki Tai authored
Summary Related to the issue #5773 and #2280. _user_defined_size is removed from EEPROMClass because it is redundant in the current code EEPROMClass::length() returns _size that is the true available size of EEPROM Impact _user_defined_size is removed from EEPROMClass EEPROMClass::length() returns _size that is the true available size of EEPROM
-
George White authored
The Deneyap Mini used a SerialMode custom menu item, which is not defined. The correct item, CDCOnBoot, has replaced it.
-
Me No Dev authored
-
- 24 Oct, 2021 1 commit
-
-
P-R-O-C-H-Y authored
Function analogReadResolution set how many bits will analogRead return. Find out that this functionality was added back 2017 by @me-no-dev in #161. Related issues: #5163
-
- 23 Oct, 2021 3 commits
-
-
Rodrigo Garcia authored
-
Rodrigo Garcia authored
removes deprecated esp_eth_set_default_handlers()
-
Rodrigo Garcia authored
-
- 21 Oct, 2021 3 commits
-
-
Rodrigo Garcia authored
Summary Modifies WiFi lib to allow dynamic buffer allocation along with SPIRAM MALLOC enabled This gives more heap space to the users Related PR in Arduino Lib Builder: espressif/esp32-arduino-lib-builder#47 Impact WiFi will work the same as it was in version 1.0.6, restoring free heap. close #5630 close #5474 close #5699 close #5697
-
michlv authored
* SPI.h add new call to return a SS pin number used. As code example states, the SS pin needs to be explicitly set for output for SPI to work, but the pin number have to be coded in addition to the SPI logic in the library, which means this duplicates code. It is much better to just be able to get the pin number from library itself. * Update SPI_Multiple_Buses.ino to use new pinSS method Simplify the example case, to show usage of pinSS method. This also simplifies the example, removing duplicated code.
-
Me No Dev authored
esp-dsp: master e05fc36 esp-face: master f108a83 esp-rainmaker: f1b82c7 esp32-camera: master 3022601 esp_littlefs: master 05d55ab
-
- 14 Oct, 2021 4 commits
-
-
Me No Dev authored
I2C Slave Implementation
-
Me No Dev authored
esp-dsp: master e05fc36 esp-face: master f108a83 esp-rainmaker: f1b82c7 esp32-camera: master 3022601 esp_littlefs: master f6e7108
-
Pedro Minatel authored
[Docs] Added Python is missing on the troubleshooting section
-
Pedro Minatel authored
-
- 13 Oct, 2021 2 commits
- 12 Oct, 2021 1 commit
-
-
pedro.minatel authored
-
- 11 Oct, 2021 5 commits
-
-
me-no-dev authored
- Support Wire::end() for Slave - Prevent Master operations when in Slave mode
-
Me No Dev authored
-
Me No Dev authored
Summary New feature: Add the ability to get the peer certificate of an SSL connectio. This is useful for IoT when the root/cert trust chain has a shorter lifecylce than the device itself. Includes example code. It adds two methods to the WiFiClientSecure client: bool getFingerprintSHA256( uint8_t fingerprint_remote_sha256[32]) -- return true and the fingerprint (i.e. the SHA256 of the raw x509 as a DER - identical to what you see in for example your webbrowser). Or false on error. const mbedtls_x509_crt* getPeerCertificate(); -- return the actual X509 struct or NULL on error. Impact No impact; backwards compatible (only adds to the API)
-
otakuto authored
In this PR, we add support for M5Stack Unit CAM to CameraWebServer. https://docs.m5stack.com/en/unit/unit_cam
-
Uri Shaked authored
When compiling with verbose logging, the build would error with a message saying `len` is not defined in `tud_vendor_rx_cb()`. This change fixes the error.
-
- 09 Oct, 2021 3 commits
-
-
me-no-dev authored
-
me-no-dev authored
-
P-R-O-C-H-Y authored
* SD.open() new feature for creating all folders in path This PR adds to the SD.open() function option to create all folders to the file. SD.open(const char* path, const char* mode, const bool create) Default value of create is false. When true folders are created. From issue #5019 * Update vfs_api.cpp memccpy -> memcpy * SD_MMC deinit fix Wrong deinit function was called.
-
- 08 Oct, 2021 1 commit
-
-
Dirk-Willem van Gulik authored
Add the ability to get the peer certificate of an SSL connection; useful for IoT when the root/cert trust chain has a shorter lifecylce than the device itself. Includes example
-
- 01 Oct, 2021 13 commits
-
-
Michał Szczepaniak authored
We don't have submodules.
-
Me No Dev authored
* Fix build compilation due to changes in the HW_TIMER's structs * Fix compilation warnings and errors with USB * Update USBCDC.cpp * Update CMakeLists.txt * Update HWCDC.cpp
-
me-no-dev authored
-
Me No Dev authored
* Implement Thread-Safe I2C based on ESP-IDF API * Update esp32-hal.h * use proper types for size and timeout * Allow disabling of the HAL locks * Limit frequency settings to prevent Interrupt WDT
-
Akash Mankar authored
-
P-R-O-C-H-Y authored
* SD.open() new feature for creating all folders in path This PR adds to the SD.open() function option to create all folders to the file. SD.open(const char* path, const char* mode, const bool create) Default value of create is false. When true folders are created. From issue #5019 * Update vfs_api.cpp memccpy -> memcpy * File f = open() edit added false for create
-
Ha Thach authored
-
Ha Thach authored
-
Carter Nelson authored
-
kokke authored
-
Serguei S. Dukachev authored
* SDMMC frequency selection based on board type On Olimex ESP32 EVB I/O operations with SD card can cause error when LAN is used in same time. Problem is disappearing if SD MMC frequency lower down from SDMMC_FREQ_HIGHSPEED to SDMMC_FREQ_DEFAULT. No problem if WiFi used instead LAN. * Code rewritten according to https://github.com/espressif/arduino-esp32/pull/5688#pullrequestreview-759359645
-
Felix Collins authored
Return size_t instead of uint8_t from BLECharacteristic::getLength(). Allows large MTU to be used. (#5687)
-
Thomas Bertels authored
-