From 577d650d83f90f4f44224e7fe6b7846eb8445e7b Mon Sep 17 00:00:00 2001 From: wuzhenghui Date: Fri, 27 Jun 2025 20:53:23 +0800 Subject: [PATCH] fix(esp_system): LOGD for the log printing in sleep process --- components/esp_hw_support/port/esp32c5/pmu_param.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/esp_hw_support/port/esp32c5/pmu_param.c b/components/esp_hw_support/port/esp32c5/pmu_param.c index 1b060f5b2b..f9bfae07e8 100644 --- a/components/esp_hw_support/port/esp32c5/pmu_param.c +++ b/components/esp_hw_support/port/esp32c5/pmu_param.c @@ -439,7 +439,7 @@ uint32_t get_act_hp_dbias(void) hp_cali_dbias = 31; } } else { - ESP_HW_LOGW(TAG, "hp_cali_dbias not burnt in efuse, use default."); + ESP_HW_LOGD(TAG, "hp_cali_dbias not burnt in efuse, use default."); } return hp_cali_dbias; } @@ -463,7 +463,7 @@ uint32_t get_act_lp_dbias(void) lp_cali_dbias = 31; } } else { - ESP_HW_LOGW(TAG, "hp_cali_dbias not burnt in efuse, use default."); + ESP_HW_LOGD(TAG, "lp_cali_dbias not burnt in efuse, use default."); } return lp_cali_dbias;