Update BLEDevice.cpp (#3267)

Pretty sure this was a typo as the deinit doesn't actually allow for reinit if that is an ifndef.  Changed in my local copy and can now deinit and reinit just fine.  Also, not sure why we are checking for the architecture here.  Just curious.
This commit is contained in:
billprozac 2019-09-26 14:50:16 -04:00 committed by Me No Dev
parent 589bb7032d
commit 9bbd720d4c

View File

@ -625,7 +625,7 @@ void BLEDevice::removePeerDevice(uint16_t conn_id, bool _client) {
esp_bluedroid_deinit(); esp_bluedroid_deinit();
esp_bt_controller_disable(); esp_bt_controller_disable();
esp_bt_controller_deinit(); esp_bt_controller_deinit();
#ifndef ARDUINO_ARCH_ESP32 #ifdef ARDUINO_ARCH_ESP32
if (release_memory) { if (release_memory) {
esp_bt_controller_mem_release(ESP_BT_MODE_BTDM); // <-- require tests because we released classic BT memory and this can cause crash (most likely not, esp-idf takes care of it) esp_bt_controller_mem_release(ESP_BT_MODE_BTDM); // <-- require tests because we released classic BT memory and this can cause crash (most likely not, esp-idf takes care of it)
} else { } else {