- 14 Dec, 2021 6 commits
-
-
Abdelatif Guettouche authored
(latest) version. Signed-off-by: Abdelatif Guettouche <abdelatif.guettouche@espressif.com>
-
Abdelatif Guettouche authored
- Remove the execute bit from source and text files. - on-pages.sh script needs the execute bit to be set. Signed-off-by: Abdelatif Guettouche <abdelatif.guettouche@espressif.com>
-
Abdelatif Guettouche authored
All the workflows are now migrated to Github Actions. Update the on-push.sh script to remove references to TravisCI variables. Signed-off-by: Abdelatif Guettouche <abdelatif.guettouche@espressif.com>
-
P-R-O-C-H-Y authored
-
Ha Thach authored
also update tinyuf2 bootloader for adafruit boards to 0.6.2
-
Pedro Minatel authored
-
- 22 Nov, 2021 2 commits
-
-
P-R-O-C-H-Y authored
* Editing esp-idf_component docs * Changed idt to ESP-IDF Co-authored-by: Pedro Minatel <pminatel@gmail.com>
-
Me No Dev authored
esp-dsp: master 6b25cbb esp-face: master 859f32a esp-rainmaker: f1b82c7 esp32-camera: master 61400bc esp_littlefs: master 3c29afc
-
- 19 Nov, 2021 1 commit
-
-
Me No Dev authored
It was found that when I2C device is holding the clock LOW, ESP32 master is failing to wait for the clock to be released. Fixes: #5875 Fixes: sparkfun/SparkFun_u-blox_GNSS_Arduino_Library#77
-
- 18 Nov, 2021 2 commits
-
-
Frank authored
changes "private" vars to "protected" so that descendants are allowed to access them.
-
Zeynep Dicle authored
-
- 15 Nov, 2021 1 commit
-
-
Pedro Minatel authored
* [Docs] Added the supported SoC table link on the README file * [Docs] Added the ESP32-S3 datasheet link to the getting started page
-
- 09 Nov, 2021 7 commits
-
-
TANAKA Masayuki authored
I misplaced the additions.
-
Me No Dev authored
-
Me No Dev authored
-
Ivan Grokhotkov authored
-
Ivan Grokhotkov authored
-
Me No Dev authored
-
Rodrigo Garcia authored
Summary Only affects ETH (not WiFi) This PR solves #5733 by allowing the DHCP IDF server to complete its tasks and only then it sets a static IP. This also solves another related failure reported in this issue (#5733 (comment)). fix #5733 Impact Adds a delay in order to wait for DHCP to actually terminate before setting the static IP configuration in ETH.
-
- 08 Nov, 2021 3 commits
-
-
Anthony Elder authored
* Re-add with clean master * Address @me-no-dev's comments * static_cast<size_t> to static_cast<uint8_t>
-
Pedro Minatel authored
-
TANAKA Masayuki authored
Added an option for using precompiled libraries. Empty if there is no precompilation. ``` compiler.libraries.ldflags= ``` Compiler Message when there is precompilation. ``` Compiling libraries... Compiling library "aquestalk-esp32" Library aquestalk-esp32 has been declared precompiled: Using precompiled library in C:\Users\tanaka\Documents\Arduino\libraries\aquestalk-esp32\src\esp32 ``` The precompiler cannot be used because it is not set up now.
-
- 06 Nov, 2021 1 commit
-
-
tobozo authored
* [FEATURE] ARDUINO_PARTITION_xxx build flag Proposition: adding `-DARDUINO_PARTITION_{build.partitions}` flag to make the build partition information available at compile time. Use cas example: ```C #if defined ARDUINO_PARTITION_default // prevent compilation #error "This sketch needs 'Minimal SPIFFS' partition scheme to compile" // or disable sketch features that need flash space #define USE_HUGE_BITMAP_IMAGES false #endif ``` * Adding -DARDUINO_PARTITION_{build.partitions} (see #5804)
-
- 04 Nov, 2021 13 commits
-
-
Me No Dev authored
Fixes: https://github.com/espressif/arduino-esp32/issues/5818
-
VojtechBartoska authored
-
-
Benjamin Staar authored
When using the FTM examples I got an error in the FTM_Initiator.ino: *"wifi:channel=0 is invalid"* I solved it for myself by simply passing the channel argument to be 1 in *WiFi.initiateFTM*. However, a better fix would be to directly change the default channel here.
-
Pedro Minatel authored
* examples: WiFi and Ethernet examples organization * examples: Change on CI scripts to include new folder * Library name reverted to WiFi * examples: WiFi and Ethernet examples organization in a new folder * examples: Eth files moved from WiFi to Ethernet lib and CMakeLists updated
-
Pedro Minatel authored
* Added I2C driver docs docs: Changes on the images and added more details about the I2C slave * docs: Added slaveWrite description and added docs build folder to the gitignore file
-
Pedro Minatel authored
* docs: Added useStaticBuffers function description * docs: Default useStaticBuffers configuration in highlight
-
Pedro Minatel authored
-
Frank authored
if (1) log_e("error") produces a warning ("missing braces") and probably wrong code if no log level is defined. This fixes that.
-
Scott Smith authored
The client always appends "Basic" to the authorization header, however there are other auth schemes that can be used: https://developer.mozilla.org/en-US/docs/Web/HTTP/Authentication For example "Bearer" when using OAuth. This PR adds a `setAuthorizationType` method to the HTTPClient which allows this scheme to be configured by the caller. Authorization type is set to "Basic" by default so this will have no impact on existing usecases.
-
Frank authored
-
Frank authored
-
Me No Dev authored
* Update toolchain to 2021r2 (#5828) * Update C3 libs to support only ECO3 and newer
-
- 26 Oct, 2021 1 commit
-
-
Limor "Ladyada" Fried authored
-
- 25 Oct, 2021 3 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.
-