diff --git a/src/zble_module.c b/src/zble_module.c index 022230f..e9273bd 100644 --- a/src/zble_module.c +++ b/src/zble_module.c @@ -150,8 +150,8 @@ void zble_module_start_adv() } void zble_module_stop_adv() { - uint32_t err_code = sd_ble_gap_adv_stop(m_advertising.adv_handle); - ZERROR_CHECK(err_code); + sd_ble_gap_adv_stop(m_advertising.adv_handle); + // ZERROR_CHECK(err_code); } bool zble_module_is_connected() { return m_conn_handle != BLE_CONN_HANDLE_INVALID; }