Commit 2bda4a96 authored by Bernd Giesecke's avatar Bernd Giesecke Committed by Me No Dev

Fix BLE stop advertising not working (#3034)

BLEAdvertising::handleGAPEvent -> ESP_GAP_BLE_ADV_STOP_COMPLETE_EVT should NOT call start()!
parent 91b9fae1
......@@ -505,7 +505,7 @@ void BLEAdvertising::handleGAPEvent(
}
case ESP_GAP_BLE_ADV_STOP_COMPLETE_EVT: {
log_i("STOP advertising");
start();
//start();
break;
}
default:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment