mirror of
https://github.com/esphome/esphome.git
synced 2024-11-08 09:40:53 +01:00
Fix panic abort when BLEClient reconnects (#3594)
This commit is contained in:
parent
522646c64d
commit
a12c6b5f35
@ -100,7 +100,12 @@ void ESP32BLETracker::loop() {
|
||||
found = true;
|
||||
if (client->state() == ClientState::DISCOVERED) {
|
||||
esp_ble_gap_stop_scanning();
|
||||
if (xSemaphoreTake(this->scan_end_lock_, 10L / portTICK_PERIOD_MS)) {
|
||||
#ifdef USE_ARDUINO
|
||||
constexpr TickType_t block_time = 10L / portTICK_PERIOD_MS;
|
||||
#else
|
||||
constexpr TickType_t block_time = 0L; // PR #3594
|
||||
#endif
|
||||
if (xSemaphoreTake(this->scan_end_lock_, block_time)) {
|
||||
xSemaphoreGive(this->scan_end_lock_);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user