Commit f92be06
Tasmota changes
* Fix wdt OTA update
* Fix ESP32-Solo WDT on HTTP OTA update
Co-authored-by: Theo Arends <11044339+arendst@users.noreply.github.com>
* Fix ESP32-Solo WDT on HTTP OTA update
* Fix ESP32-Solo WDT on HTTP OTA update
Co-authored-by: Theo Arends <11044339+arendst@users.noreply.github.com>
* IDF master c69f0ec32
* Fix WDT only for solo core
* IDF master 58022f859
* IDF master 606557b48
* IDF master 8131d6f46
* IDF master 59aa60d52
* IDF master 83956ebba
* IDF master 83956ebbae
* IDF master b1c3ee71c5
* IDF master 2c49af9e75
* IDF master eb1a66e7c9
* IDF master a20df743f1
* 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
* IDF master b63ec47238
* Update libarduino_tinyusb.a
* Update HWCDC.cpp
* IDF master 5f38b766a8
* IDF master b1f851b8f8
* IDF master 61299f879e
* Delete tools/sdk/esp32/include/coap directory
* Delete tools/sdk/esp32c3/include/coap directory
* Delete tools/sdk/esp32s2/include/coap directory
* solve conflicts
* force Dynamic Buffer instead of Static ones
* Remove debug if
* Resolve conflicts
* Revert espressif#5861
* add GPIO defines for C3
* Edit sd_diskio to check card status
* Update CMakeLists.txt
* Delete libraries/RainMaker directory
* Update README.md
* Update README.md
* Revert "RMT refactor"
* Fixes Lib Builder compiling errors
* Fixes Lib Builder compiling errors
* Revert "Revert "RMT refactor""
* Update esp32-hal-rmt.c
* Update esp32-hal-rmt.c
* Update esp32-hal-rmt.c
* Update esp32-hal-rmt.c
* Update esp32-hal-gpio.c
* Bugfix of ff_sd_status
* Fix I2C Slave Compile
I2C Slave currently doesn't compile for projects where Arduino is an IDF component. This adds missing conditionals.
* add missing c3 define
when disable HAL lock is set
* add ESP32C3 `esp32_adc2gpio`
* Fixes UART MODBUS and Loopback issue
* Update esp32-hal-uart.c
* Revert "Fixing interrupts in LEDC (espressif#6160)"
This reverts commit a593206.
* Update esp32-hal.h
* use Tasmota github
* Use Tasmota platform for CI
* tasmota eaptool v3.2
* add missing c3 define
* enable SPI hal for S3
* revert enable spi for S3
* Update Esp.cpp
* Update Esp.cpp
* fix S3 uart gpios
* Update HardwareSerial.cpp
* Update Esp.cpp
* Update Esp.cpp
* Bootloader is at 0x0000 for S3
* Update esp32-hal-cpu.c
* Update esp32-hal-spi.c
* Update install-platformio-esp32.sh
* Fix replace() failing
* Update CMakeLists.txt
* remove Rainmaker
* Update CMakeLists.txt
* try to find lib builder fail
* Update CMakeLists.txt
* Update idf_component.yml
* Update esp32-hal-ledc.c
* Update esp32-hal-gpio.c
* Update esp32-hal-gpio.h
* Update boards.txt
* Update idf_component.yml
* Update esp32-hal-gpio.c
* Update esp32-hal-ledc.c
* Update idf_component.yml
* Add files via upload
* Update HTTPClient.cpp
* Update HTTPClient.h
* Fixes RMT examples and adds ESP32-S3 config
* Fixes RMT examples and adds ESP32-S3 config
* fix compile
* fix compile 2
* fix compile 3
* revert cookie changes
* revert cookie jar support
* cookie jar
* cookie jar
* Support mbedtls 2.28.x
* Update esp32c3.rom.ld
* 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.
* Update esp32-hal-gpio.c
* Update esp32-hal-ledc.c
* Update HTTPClient.cpp
* Update ssl_client.cpp
* Update boards.txt
* Update esp32-hal-gpio.c
* Update esp32-hal-ledc.c
* Edited analog channels functions
* Update esp32-hal-gpio.c
* Update esp32-hal-gpio.h
* Update esp32-hal-ledc.c
* Fix CDC+JTAG is disabled when WiFi is used on ESP32-C3
Fixes: espressif#6264
Thanks @Spritetm
* ADC esp32s2 attenuation fix for DAC pins
* Revert "ADC esp32s2 attenuation fix for DAC pins"
* revert6134
espressif#6134
* revert2
* revert3
* revert
* Update HardwareSerial.cpp
* Update HardwareSerial.h
* Update esp32-hal-uart.c
* Update esp32-hal-uart.h
* S3
* Update esp32-hal-adc.c
* Fix ethenet
* align with arduino upstream
* Adds C++ std::function to Serial.onReceive() PR6364 upstream
* Update esp32-hal-uart.c
* Update HardwareSerial.cpp
* Update esp32-hal-uart.c
* Update boards.txt
* Update HardwareSerial.cpp
* Update HardwareSerial.h
* Update WiFiAP.cpp
* Update WiFiGeneric.cpp
* Update WiFiGeneric.h
* Update WiFiSTA.cpp
* Update WiFiSTA.h
* Update HardwareSerial.cpp
* Update HardwareSerial.h
* Delete libraries/RainMaker directory
* remove rainmaker
* Fixes USB CDC setRxBufferSize(), begin(), _onRX()
* Fixes SetRxBufferSize(0) with end()
* Fixes reset when 2x call to end()
* publish.yml: Limit the running scope of the publish Workflow. (espressif#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>
* Add missing include in AsyncUDP.h (espressif#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.
* Some board variant fixes (espressif#6411)
* make work with rev C pcb
* use #define for easy testing
* Added another overloaded WiFiSTAClass::begin() function that provides… (espressif#6398)
Summary
The examples demonstrate how to create a WPA2 Enterprise connection, but it requires using various direct esp_idf functions. This patch is intended to create another overloaded version of the WiFi.begin() function that allows a user to create a WPA2 Enterprise connection in much the same way as different kinds of connections.
My only question for the core maintainers is whether I should leave those #ifdef's in there. I added them so that it was easy to disable all the code I added via defines from my platformio.ini file, but they technically aren't necessary.
Impact
This should make it easier for novice users to create WPA2 Enterprise connections. For my university, I didn't need a root certificate or the client certificate or client key, so I haven't been able to debug those scenarios, but I built the begin functions to allow any one of those to be used, if needed.
I can confirm that eduroam-style WPA2 Enterprise networks that only require authentication with a username and password works as expected.
* Fix boot freeze when trying to init PSRAM on Pico D4
* Revert "Added another overloaded WiFiSTAClass::begin() function that provides… (espressif#6398)"
This reverts commit d977359.
* fix rainmaker merge
Co-authored-by: Theo Arends <11044339+arendst@users.noreply.github.com>
Co-authored-by: me-no-dev <me-no-dev@users.noreply.github.com>
Co-authored-by: me-no-dev <hristo@espressif.com>
Co-authored-by: Jan Procházka <90197375+P-R-O-C-H-Y@users.noreply.github.com>
Co-authored-by: Jason2866 <jason2866@github.com>
Co-authored-by: Rodrigo Garcia <Rodrigo.Garcia@espressif.com>
Co-authored-by: mrengineer7777 <44048235+mrengineer7777@users.noreply.github.com>
Co-authored-by: s-hadinger <49731213+s-hadinger@users.noreply.github.com>
Co-authored-by: Abdelatif Guettouche <abdelatif.guettouche@espressif.com>
Co-authored-by: Limor "Ladyada" Fried <limor@ladyada.net>
Co-authored-by: John P. Swensen <jpswensen@gmail.com>
Co-authored-by: Stephan Hadinger <stephan.hadinger@gmail.com>1 parent 86b6635 commit f92be06
File tree
16 files changed
+69
-38
lines changed- .github
- scripts
- workflows
- cores/esp32
- libraries
- AsyncUDP/src
- ESP32/examples/RMT/RMTCallback
- Update/src
- tools/sdk/esp32c3/ld
- variants
- adafruit_feather_esp32_v2
- adafruit_feather_esp32s2
- adafruit_qtpy_esp32c3
16 files changed
+69
-38
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
20 | 20 | | |
21 | 21 | | |
22 | 22 | | |
23 | | - | |
| 23 | + | |
24 | 24 | | |
25 | 25 | | |
26 | 26 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
3 | 3 | | |
4 | 4 | | |
5 | 5 | | |
| 6 | + | |
6 | 7 | | |
7 | 8 | | |
8 | 9 | | |
| |||
11 | 12 | | |
12 | 13 | | |
13 | 14 | | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
14 | 18 | | |
15 | 19 | | |
16 | 20 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
13017 | 13017 | | |
13018 | 13018 | | |
13019 | 13019 | | |
13020 | | - | |
| 13020 | + | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
47 | 47 | | |
48 | 48 | | |
49 | 49 | | |
50 | | - | |
| 50 | + | |
51 | 51 | | |
52 | 52 | | |
53 | 53 | | |
| |||
192 | 192 | | |
193 | 193 | | |
194 | 194 | | |
195 | | - | |
| 195 | + | |
196 | 196 | | |
197 | 197 | | |
198 | 198 | | |
| |||
231 | 231 | | |
232 | 232 | | |
233 | 233 | | |
| 234 | + | |
| 235 | + | |
| 236 | + | |
| 237 | + | |
234 | 238 | | |
235 | 239 | | |
236 | 240 | | |
| |||
391 | 395 | | |
392 | 396 | | |
393 | 397 | | |
394 | | - | |
| 398 | + | |
395 | 399 | | |
396 | 400 | | |
397 | 401 | | |
398 | 402 | | |
399 | | - | |
| 403 | + | |
400 | 404 | | |
401 | 405 | | |
402 | 406 | | |
403 | 407 | | |
404 | | - | |
| 408 | + | |
405 | 409 | | |
406 | 410 | | |
407 | 411 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
37 | 37 | | |
38 | 38 | | |
39 | 39 | | |
40 | | - | |
| 40 | + | |
41 | 41 | | |
42 | 42 | | |
43 | 43 | | |
| |||
86 | 86 | | |
87 | 87 | | |
88 | 88 | | |
| 89 | + | |
| 90 | + | |
89 | 91 | | |
90 | 92 | | |
91 | 93 | | |
| |||
100 | 102 | | |
101 | 103 | | |
102 | 104 | | |
| 105 | + | |
| 106 | + | |
103 | 107 | | |
104 | 108 | | |
105 | 109 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
156 | 156 | | |
157 | 157 | | |
158 | 158 | | |
159 | | - | |
160 | 159 | | |
161 | 160 | | |
162 | | - | |
| 161 | + | |
| 162 | + | |
163 | 163 | | |
164 | 164 | | |
165 | 165 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
114 | 114 | | |
115 | 115 | | |
116 | 116 | | |
117 | | - | |
118 | | - | |
| 117 | + | |
| 118 | + | |
| 119 | + | |
| 120 | + | |
119 | 121 | | |
120 | 122 | | |
121 | | - | |
| 123 | + | |
| 124 | + | |
122 | 125 | | |
123 | 126 | | |
124 | 127 | | |
| |||
133 | 136 | | |
134 | 137 | | |
135 | 138 | | |
136 | | - | |
| 139 | + | |
| 140 | + | |
137 | 141 | | |
138 | 142 | | |
139 | 143 | | |
| |||
144 | 148 | | |
145 | 149 | | |
146 | 150 | | |
| 151 | + | |
147 | 152 | | |
148 | 153 | | |
149 | 154 | | |
| |||
246 | 251 | | |
247 | 252 | | |
248 | 253 | | |
| 254 | + | |
| 255 | + | |
| 256 | + | |
| 257 | + | |
| 258 | + | |
| 259 | + | |
| 260 | + | |
| 261 | + | |
| 262 | + | |
249 | 263 | | |
250 | | - | |
251 | | - | |
| 264 | + | |
| 265 | + | |
| 266 | + | |
| 267 | + | |
252 | 268 | | |
253 | 269 | | |
254 | | - | |
255 | | - | |
256 | | - | |
| 270 | + | |
| 271 | + | |
| 272 | + | |
| 273 | + | |
| 274 | + | |
257 | 275 | | |
258 | 276 | | |
259 | 277 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
56 | 56 | | |
57 | 57 | | |
58 | 58 | | |
59 | | - | |
| 59 | + | |
60 | 60 | | |
61 | 61 | | |
62 | 62 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
4 | 4 | | |
5 | 5 | | |
6 | 6 | | |
| 7 | + | |
7 | 8 | | |
8 | 9 | | |
9 | 10 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
64 | 64 | | |
65 | 65 | | |
66 | 66 | | |
67 | | - | |
| 67 | + | |
0 commit comments