Tags: scheffield/arduino-esp32
Tags
IDF master cf457d412 (espressif#5073) esp-dsp: master 7cc5073 esp-face: master 420fc7e esp-rainmaker: f1b82c7 esp32-camera: master 2dded7c esp_littlefs: master d268e18
Quote {build.source.path} to allow spaces in path (espressif#4868) Previously sketches or examples that had spaces anywhere in their absolute path caused a total build failure. By adding quotes around the path in platform.txt, they now build correctly Co-authored-by: Me No Dev <me-no-dev@users.noreply.github.com>
etboard pinmap upload (espressif#4748) Co-authored-by: ketri-kjy <jinyoung@ketri.re.kr> Co-authored-by: ketri2484 <ketri2484@gamil.com>
Improve cleanup in BLEClient (espressif#4742) - Remove client from the list of devices in case registration fails - Filter other events not related to registration during registration phase - Cleanup if connect fails - Reset if after disconnect - Disconnect callback *after* cleanup is done so object can be deleted This fixes some of the issues I had like: - `BLEClient::connect` hangs up and never recovered because registration failed - `BLEClient` could not be deleted after disconnect or deletion creating ghost events espressif#4047 - `BLEClient` could not be properly reused after a connection was attempted (successful or not) * Cleanup in case of registration and connect failure. Cleanup before calling disconnect callback for safe delete. Reject other events during registration. Adresses espressif#4047, espressif#4055 * Clear if after unregister espressif#4047
IDF release/v3.3 cd59d107b (espressif#4708) Co-authored-by: me-no-dev <me-no-dev@github.com>
Update WiFiClient.cpp (espressif#4573) Replace (depricated) bzero, bcopy with memset and memcpy.