File tree Expand file tree Collapse file tree 4 files changed +4
-3
lines changed
AudioTools/CoreAudio/AudioHttp Expand file tree Collapse file tree 4 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ esp32:esp32:esp32c3 ./examples-stream/streams-generator-serial -> rc=0
3
3
esp32:esp32:esp32s3 ./examples-stream/streams-generator-serial -> rc=0
4
4
esp32:esp32:esp32s2 ./examples-stream/streams-generator-serial -> rc=0
5
5
esp32:esp32:esp32c6 ./examples-stream/streams-generator-serial -> rc=0
6
+ esp32:esp32:esp32h2 ./examples-stream/streams-generator-serial -> rc=0
6
7
esp8266:esp8266:generic ./examples-stream/streams-generator-serial -> rc=0
7
8
rp2040:rp2040:generic ./examples-stream/streams-generator-serial -> rc=0
8
9
arduino:avr:nano ./examples-stream/streams-generator-serial -> rc=0
Original file line number Diff line number Diff line change @@ -23,6 +23,7 @@ compile_example "esp32:esp32:esp32c3"
23
23
compile_example " esp32:esp32:esp32s3"
24
24
compile_example " esp32:esp32:esp32s2"
25
25
compile_example " esp32:esp32:esp32c6"
26
+ compile_example " esp32:esp32:esp32h2"
26
27
compile_example " esp8266:esp8266:generic"
27
28
compile_example " rp2040:rp2040:generic"
28
29
compile_example " arduino:avr:nano"
Original file line number Diff line number Diff line change @@ -411,6 +411,7 @@ typedef uint32_t eps32_i2s_sample_rate_type;
411
411
#define USE_TDM
412
412
#define USE_PWM
413
413
#define USE_I2S
414
+ #define USE_PDM
414
415
#define USE_TYPETRAITS
415
416
#define USE_EFFECTS_SUITE
416
417
#define USE_TIMER
Original file line number Diff line number Diff line change @@ -320,14 +320,12 @@ class URLStream : public AbstractURLStream {
320
320
client.setTimeout (clientTimeout / 1000 );
321
321
request.setTimeout (clientTimeout);
322
322
323
- #ifdef USE_WIFI_CLIENT_SECURE
323
+ #if defined(ESP32) && defined( USE_WIFI_CLIENT_SECURE)
324
324
// There is a bug in IDF 4!
325
325
if (clientSecure != nullptr ) {
326
326
clientSecure->setHandshakeTimeout (handshakeTimeout);
327
327
}
328
- #endif
329
328
330
- #ifdef ESP32
331
329
// Performance optimization for ESP32
332
330
if (!is_power_save) {
333
331
esp_wifi_set_ps (WIFI_PS_NONE);
You can’t perform that action at this time.
0 commit comments