mirror of
https://github.com/h2zero/esp-nimble-cpp.git
synced 2024-11-21 20:50:55 +01:00
Remove NimBLEServer::start abort.
This commit is contained in:
parent
fd698b0212
commit
a1bd817875
1 changed files with 2 additions and 3 deletions
|
@ -192,9 +192,8 @@ void NimBLEServer::start() {
|
||||||
|
|
||||||
int rc = ble_gatts_start();
|
int rc = ble_gatts_start();
|
||||||
if (rc != 0) {
|
if (rc != 0) {
|
||||||
NIMBLE_LOGE(LOG_TAG, "ble_gatts_start; rc=%d, %s", rc,
|
NIMBLE_LOGE(LOG_TAG, "ble_gatts_start; rc=%d, %s", rc, NimBLEUtils::returnCodeToString(rc));
|
||||||
NimBLEUtils::returnCodeToString(rc));
|
return;
|
||||||
abort();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#if CONFIG_NIMBLE_CPP_LOG_LEVEL >= 4
|
#if CONFIG_NIMBLE_CPP_LOG_LEVEL >= 4
|
||||||
|
|
Loading…
Reference in a new issue