8000 sync · regularex/esp32-snippets@b22f825 · GitHub
[go: up one dir, main page]

Skip to 8000 content

Commit b22f825

Browse files
committed
sync
1 parent 90167ad commit b22f825

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

cpp_utils/BLEDevice.cpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -163,9 +163,12 @@ void BLEDevice::gapEventHandler(
163163
* try and release/delete it.
164164
*/
165165
BLEScan* BLEDevice::getScan() {
166+
//ESP_LOGD(LOG_TAG, ">> getScan");
166167
if (m_pScan == nullptr) {
167168
m_pScan = new BLEScan();
169+
//ESP_LOGD(LOG_TAG, " - creating a new scan object");
168170
}
171+
//ESP_LOGD(LOG_TAG, "<< getScan: Returning object at 0x%x", (uint32_t)m_pScan);
169172
return m_pScan;
170173
} // getScan
171174

0 commit comments

Comments
 (0)
0