From 05863cb26740a480a712b3c9fca693b7a482f803 Mon Sep 17 00:00:00 2001 From: Roshan Bangar Date: Mon, 12 Sep 2022 19:39:44 +0530 Subject: [PATCH] Nimble : updated debug level for a print to avoid unwanted console log. --- components/bt/host/nimble/nimble | 2 +- components/bt/porting/npl/freertos/src/npl_os_freertos.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/components/bt/host/nimble/nimble b/components/bt/host/nimble/nimble index 9bcd57d5fa..b82f269893 160000 --- a/components/bt/host/nimble/nimble +++ b/components/bt/host/nimble/nimble @@ -1 +1 @@ -Subproject commit 9bcd57d5fa1164073dc1578abce653356c5a4608 +Subproject commit b82f26989365f15c67f229f6bd6090080cfd228e diff --git a/components/bt/porting/npl/freertos/src/npl_os_freertos.c b/components/bt/porting/npl/freertos/src/npl_os_freertos.c index eef5153beb..7738e6e2d3 100644 --- a/components/bt/porting/npl/freertos/src/npl_os_freertos.c +++ b/components/bt/porting/npl/freertos/src/npl_os_freertos.c @@ -765,7 +765,7 @@ IRAM_ATTR npl_freertos_callout_deinit(struct ble_npl_callout *co) esp_err_t err = esp_timer_stop(callout->handle); if(err != ESP_OK) { if (err != ESP_ERR_INVALID_STATE) { // ESP_ERR_INVALID_STATE is expected when timer is already stopped - ESP_LOGW(TAG, "Timer not stopped"); + ESP_LOGD(TAG, "Timer not stopped"); } } err = esp_timer_delete(callout->handle);