mirror of
https://github.com/h2zero/esp-nimble-cpp.git
synced 2024-12-18 09:10:47 +01:00
Fixup server logs
This commit is contained in:
parent
49769f4aeb
commit
09e8eede94
1 changed files with 3 additions and 4 deletions
|
@ -351,7 +351,6 @@ int NimBLEServer::handleGapEvent(ble_gap_event* event, void* arg) {
|
||||||
switch (event->type) {
|
switch (event->type) {
|
||||||
case BLE_GAP_EVENT_CONNECT: {
|
case BLE_GAP_EVENT_CONNECT: {
|
||||||
if (event->connect.status != 0) {
|
if (event->connect.status != 0) {
|
||||||
/* Connection failed; resume advertising */
|
|
||||||
NIMBLE_LOGE(LOG_TAG, "Connection failed");
|
NIMBLE_LOGE(LOG_TAG, "Connection failed");
|
||||||
# if !CONFIG_BT_NIMBLE_EXT_ADV
|
# if !CONFIG_BT_NIMBLE_EXT_ADV
|
||||||
NimBLEDevice::startAdvertising();
|
NimBLEDevice::startAdvertising();
|
||||||
|
@ -420,7 +419,7 @@ int NimBLEServer::handleGapEvent(ble_gap_event* event, void* arg) {
|
||||||
NIMBLE_LOGI(LOG_TAG,
|
NIMBLE_LOGI(LOG_TAG,
|
||||||
"subscribe event; attr_handle=%d, subscribed: %s",
|
"subscribe event; attr_handle=%d, subscribed: %s",
|
||||||
event->subscribe.attr_handle,
|
event->subscribe.attr_handle,
|
||||||
(event->subscribe.cur_notify ? "true" : "false"));
|
((event->subscribe.cur_notify || event->subscribe.cur_indicate) ? "true" : "false"));
|
||||||
|
|
||||||
for (const auto& svc : pServer->m_svcVec) {
|
for (const auto& svc : pServer->m_svcVec) {
|
||||||
for (const auto& chr : svc->m_vChars) {
|
for (const auto& chr : svc->m_vChars) {
|
||||||
|
@ -594,7 +593,7 @@ int NimBLEServer::handleGapEvent(ble_gap_event* event, void* arg) {
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
NIMBLE_LOGD(LOG_TAG, "<< handleGATTServerEvent");
|
NIMBLE_LOGD(LOG_TAG, "<< handleGapEvent");
|
||||||
return 0;
|
return 0;
|
||||||
} // handleGapEvent
|
} // handleGapEvent
|
||||||
|
|
||||||
|
@ -751,7 +750,7 @@ void NimBLEServer::addService(NimBLEService* service) {
|
||||||
|
|
||||||
service->setRemoved(0);
|
service->setRemoved(0);
|
||||||
serviceChanged();
|
serviceChanged();
|
||||||
}
|
} // addService
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Resets the GATT server, used when services are added/removed after initialization.
|
* @brief Resets the GATT server, used when services are added/removed after initialization.
|
||||||
|
|
Loading…
Reference in a new issue