From 6705c11867b1385547995fb59b1f435f397b72cb Mon Sep 17 00:00:00 2001 From: rbaron Date: Fri, 18 Nov 2022 01:16:44 +0100 Subject: [PATCH] Cleanup --- code/nrf-connect/src/prst/ble/ble.c | 5 ----- 1 file changed, 5 deletions(-) diff --git a/code/nrf-connect/src/prst/ble/ble.c b/code/nrf-connect/src/prst/ble/ble.c index 0201491..2709294 100644 --- a/code/nrf-connect/src/prst/ble/ble.c +++ b/code/nrf-connect/src/prst/ble/ble.c @@ -36,11 +36,6 @@ int prst_ble_init() { if (IS_ENABLED(CONFIG_SETTINGS)) { RET_IF_ERR_MSG(settings_load(), "Error in settings_load()"); } - - struct bt_le_oob oob; - RET_IF_ERR(bt_le_oob_get_local(BT_ID_DEFAULT, &oob)); - LOG_INF("ADDR: "); - LOG_HEXDUMP_INF(oob.addr.a.val, 6, ":"); return 0; }