mirror of
https://github.com/espressif/esp-idf.git
synced 2025-07-30 18:57:19 +02:00
Merge branch 'bugfix/change_log_level_for_print_v5.0' into 'release/v5.0'
Nimble : updated debug level for a print to avoid unwanted console log. (v5.0) See merge request espressif/esp-idf!20110
This commit is contained in:
Submodule components/bt/host/nimble/nimble updated: 9bcd57d5fa...b82f269893
@ -765,7 +765,7 @@ IRAM_ATTR npl_freertos_callout_deinit(struct ble_npl_callout *co)
|
|||||||
esp_err_t err = esp_timer_stop(callout->handle);
|
esp_err_t err = esp_timer_stop(callout->handle);
|
||||||
if(err != ESP_OK) {
|
if(err != ESP_OK) {
|
||||||
if (err != ESP_ERR_INVALID_STATE) { // ESP_ERR_INVALID_STATE is expected when timer is already stopped
|
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);
|
err = esp_timer_delete(callout->handle);
|
||||||
|
Reference in New Issue
Block a user