ba8024c0d2
Some board variant fixes ( #6411 )
...
* make work with rev C pcb
* use #define for easy testing
2022-03-14 12:45:16 +02:00
e87b87d04c
Add missing include in AsyncUDP.h ( #6412 )
...
In my project I'm getting the error
```
In file included from lib/Discovery/Discovery.cpp:2:
C:/Users/David/.platformio/packages/framework-arduinoespressif32/libraries/AsyncUDP/src/AsyncUDP.h:47:1: error: expected class-name before '{' token
```
Adding a reference to Stream.h fixes it.
2022-03-14 12:44:24 +02:00
9b9744f25f
publish.yml: Limit the running scope of the publish Workflow. ( #6428 )
...
1. Don't run the publish test result workflow on the master
branch.
2. Run only on Pull Requests to be able to publish the result as a PR comment.
3. Avoid running when the triggering workflow was skipped, this will
cause a failure as no file will be uploaded.
Signed-off-by: Abdelatif Guettouche <abdelatif.guettouche@espressif.com >
2022-03-14 12:30:33 +02:00
68daea4a4a
Implemented tone and noTone; fixes #980 ( #6402 )
...
* Implemented tone
* Tone uses queue; implemented setToneChannel
2022-03-10 17:26:30 +02:00
52e018198b
publish.yml: Remove the debug job and fix an error in the workflow. ( #6408 )
...
Signed-off-by: Abdelatif Guettouche <abdelatif.guettouche@espressif.com >
2022-03-10 15:41:02 +02:00
883241229e
Allows setting only one pin (rx or tx) in the first begin() ( #6394 )
2022-03-10 15:33:27 +02:00
9b00d4ae6b
Fixed the antenna GPIO argument ( #6392 )
2022-03-10 15:32:13 +02:00
66596fa581
Fix ledc panic’ed when wrong setup of frequency and bit width ( #6371 )
...
* Fixed LEDC panic when wrong bit widht / frequency set.
* Fixed ledc example to be working on all SOCs
2022-03-10 15:30:57 +02:00
02a3a71e7c
CameraWebServer fix ( #6370 )
2022-03-10 15:29:56 +02:00
3a7dfa14db
Fixes rmtDeinit() and tests RX/TX before operations ( #6369 )
...
* Fixes rmtDeinit() and tests RX/TX before operations
* Optimizes final binary size
* Typo
2022-03-10 15:19:15 +02:00
96f8f5e3ef
Add initial hardware testing support ( #6313 )
...
- Added workflow triggered by cron or label "hil_test"
- Added examples with both pytest and unity
2022-03-10 14:45:26 +02:00
4da1051266
Bugfix of the following problems: Invalid variable argument list used to retrieve length. If length is greater or equal than the available buffer, a memory leak will happen because va_end() is missing. ( #6360 )
2022-03-02 15:25:59 +02:00
7d4992a811
Adds C++ std::function to Serial.onReceive() ( #6364 )
...
* Adds C++ std::function to Serial.onReceive()
* fixes LOCK macro when disabled
2022-03-02 15:20:43 +02:00
95b8e7e42b
Fixes DHCP Server Lease Range for any AP Server Static IP Address ( #6296 )
...
* Fixes DHCP Server Lease Range for any AP Server Static IP Address
* Fixes DHCP in APMode when Static IP is out of subnet range
2022-03-02 15:19:05 +02:00
e8d6050a7b
Implemented new types of SmartConfig ( #6367 )
2022-03-02 15:18:20 +02:00
683dbf3b1b
Added ESP32-WROOM-DA module to boards.txt ( #6361 )
...
Added dual antenna configuration based on the module selection
Added warning to the example on how to use the DA
2022-03-02 15:17:18 +02:00
c2e5957f35
Update esp32-hal-log.h ( #6358 )
...
#ifdef added, to avoid compiler redefinition warnings for LOG_LOCAL_LEVEL if defined by application, and we USE_ESP_IDF_LOG
2022-02-28 16:50:07 +02:00
eae67a9fb4
WiFi DA: Added Dual Antenna to the docs and example created ( #6357 )
...
Summary
Added the Dual Antenna documentation.
Added the DA example.
2022-02-28 16:48:51 +02:00
52575d63f4
Fixed wifiBegin to fail wfile connecting to same AP without previous disconnecting ( #6359 )
2022-02-28 16:47:06 +02:00
d1f0d6c0fc
Added more details about PlatformIO ( #5540 )
...
* Added more details about PlatformIO
* Fixed typo
2022-02-28 15:06:28 +02:00
bf58ab65e9
Because QName max. size is 256, the QNameLength range must be able to address it. Therefore the datatype was changed to uint16_t. ( #6354 )
2022-02-28 14:42:48 +02:00
c280225738
fix final rev pins ( #6353 )
...
fix uarts
Co-authored-by: ladyada <support@adafruit.com >
2022-02-28 14:31:00 +02:00
4f7e88a177
Fixes build error if TAG is const ( #6351 )
2022-02-28 14:30:33 +02:00
b254765ef8
add lolin s2 pico board def ( #6325 )
2022-02-24 01:03:03 +02:00
8899de760a
Add new board (Deneyap Kart 1A) ( #6324 )
...
* Add new board (Deneyap Kart 1A)
* Update pins_arduino.h
2022-02-24 01:02:35 +02:00
524279d468
Merge pull request #6343 from Ouss4/dummy-selfhosted
...
.github/workflows: Remove the slefhost runner test.
2022-02-24 01:00:48 +02:00
f319804521
.github/workflows: Remove the slefhost runner test.
...
Signed-off-by: Abdelatif Guettouche <abdelatif.guettouche@espressif.com >
2022-02-23 23:23:34 +01:00
2884215f85
Documentation for DAC peripheral ( #6337 )
2022-02-23 16:00:16 +02:00
a57cac63e4
Timer API docs + esp32-hal-timer.h edit ( #6335 )
2022-02-23 15:59:20 +02:00
de6994187d
LEDC & SigmaDelta documentation ( #6330 )
...
* LEDC preripheral doc
* SigmaDelta peripheral doc
* Added missing symbol
* Edited grammar, mistakes
* quick edit
2022-02-23 15:58:27 +02:00
491444c15a
[Docs] Added more details about embedded FLASH and PSRAM on ESP32-S3. ( #6321 )
...
* [Docs] Added more information about embedded PSRAM and Flash for ESP32-S3
* [Docs] Fixed some typos
* [Docs] Fixed some spacing issues
2022-02-23 15:57:31 +02:00
a135169176
Added ADC API doc + simple example ( #6301 )
...
* Added ADC API doc + simple example
* Added attenuation input voltage range + conf.py added tabs extension
* Update requirements.txt
* Update adc.rst
2022-02-23 15:45:19 +02:00
b5f3d6c836
Update doc: Arduino as IDF component; fixes #5833 ( #6299 )
...
Summary
Updated documentation describing the usage of Arduino-esp32 core as ESP-IDF component.
Impact
Removed confusing mentions of advanced menuconfig options.
Extended process of installation, setup, and usage.
Related links
Closes #5833
2022-02-23 15:24:40 +02:00
d5e8c9dddc
Make USBHIDKeyboard::sendReport() public ( #6322 )
...
Exposing this method makes it easier to integrate non-espressif USB-based projects (e.g. led/modifiers examples from USB Host Shield 2.0)
2022-02-21 15:16:24 +02:00
65cfab7868
add lolin s2 mini board def ( #6320 )
2022-02-21 14:18:09 +02:00
4517b9c8fc
The M5Core2 and M5Tough have 40 pins ( #6315 )
...
Summary
The M5Core2 and the very similar M5Tough have 40 digital pins
See reference here: https://docs.m5stack.com/en/core/core2 as well as the constant declarations in the bottom part of the file.
Impact
Without this, Code that needs the total number of pins (e.g. firmata) doesn't show the higher pin numbers correctly.
2022-02-21 10:24:14 +02:00
dad946a641
Add partition scheme menu for AI Thinker ESP-CAM boards ( #6310 )
...
Sometimes you dont need the full 3M but want OTA instead
2022-02-21 10:23:33 +02:00
7c58696223
add lolin c3 mini board def ( #6306 )
...
add lolin c3 mini board def
2022-02-21 10:22:43 +02:00
02a70bbd21
fixed http.end taking too long ( #6277 )
...
http end takes 20-30 seconds if there is a large amount of data
replacing this read loop with flush fixes that problem
2022-02-21 10:03:25 +02:00
50e9772ecf
Fixes UART pin setting + adds CTS/RTS HW Flow Control ( #6272 )
...
* fixes setPins and begin to keep rx/tx unmodified
* adds Hardware Flow Control mode and CTS/RTS pin setting
* adds Hardware Flow Control mode and CTS/RTS pin setting
* adds Hardware Flow Control mode and CTS/RTS pin setting
* adds Hardware Flow Control mode and CTS/RTS pin setting
* Code Review
2022-02-17 03:28:46 +02:00
01303b700d
ADC esp32s2 attenuation fix for DAC pins ( #6282 )
...
* ADC esp32s2 attenuation fix for DAC pins
* Use soc define instead config target
2022-02-16 15:45:06 +02:00
4900979906
Added documentation for the Arduino IDE tools menu ( #6284 )
...
* Added the Tools Options into the docs.
* Added more options
* Deleted wrong file.
* [Docs] Added image to show the MSC and some grammar fixes
* [Docs] Added more information about the core selection
* Deleted wrong file.
* [Docs] Added more information about the core selection
* [Docs] Changes according to the PR review
2022-02-16 15:43:21 +02:00
c7cc5c90eb
GPIO refactoring ( #6259 )
...
* GPIO refactoring
GPIO now using ESP-IDF API on all chips.
LEDC interrupt fix removed - no longer needed.
Edited pins_arduino.h in variants according to changes in gpio.
* Edited analog channels functions
2022-02-16 14:43:38 +02:00
70b7c3afcb
Add Ethernet to CMakeLists ( #6261 )
2022-02-16 14:29:13 +02:00
e83a9b5f60
Adds BLE examples to ESP32-C3 CI cycle ( #6285 )
2022-02-16 14:25:39 +02:00
7be846cb23
Fixes softAPConfig() return ( #6294 )
2022-02-16 13:51:21 +02:00
2c7052a64c
Installing.rst_update ( #6292 )
...
Co-authored-by: Pedro Minatel <pminatel@gmail.com >
2022-02-16 13:34:51 +02:00
c99f594b63
Fix Check for _cookieJar in HTTPClient ( #6266 ) ( #6280 )
...
* Check for cookieJar before setting cookies
* Return as soon as possible w/o _cookieJar
2022-02-16 12:08:24 +02:00
05d8cddee7
Fix CDC+JTAG is disabled when WiFi is used on ESP32-C3 ( #6287 )
...
Fixes: https://github.com/espressif/arduino-esp32/issues/6264
Thanks @Spritetm
2022-02-16 09:30:59 +02:00
c4954dd582
Fix compile with Arduino lib builder ( #6244 )
2022-02-07 16:31:38 +02:00