From f5cd1d848a41d7319bba7fc9c4d232c6984b86cf 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 ++-- components/esp_hw_support/port/esp32c61/pmu_param.c | 4 ++-- components/esp_hw_support/port/esp32p4/pmu_param.c | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/components/esp_hw_support/port/esp32c5/pmu_param.c b/components/esp_hw_support/port/esp32c5/pmu_param.c index b6d8253e78..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, "lp_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; diff --git a/components/esp_hw_support/port/esp32c61/pmu_param.c b/components/esp_hw_support/port/esp32c61/pmu_param.c index d146f106aa..0a150e9cff 100644 --- a/components/esp_hw_support/port/esp32c61/pmu_param.c +++ b/components/esp_hw_support/port/esp32c61/pmu_param.c @@ -434,7 +434,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; } @@ -457,7 +457,7 @@ uint32_t get_act_lp_dbias(void) lp_cali_dbias = 31; } } else { - ESP_HW_LOGW(TAG, "lp_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; } diff --git a/components/esp_hw_support/port/esp32p4/pmu_param.c b/components/esp_hw_support/port/esp32p4/pmu_param.c index c951454811..d49ed3a67b 100644 --- a/components/esp_hw_support/port/esp32p4/pmu_param.c +++ b/components/esp_hw_support/port/esp32p4/pmu_param.c @@ -345,7 +345,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; } @@ -367,7 +367,7 @@ uint32_t get_act_lp_dbias(void) lp_cali_dbias = 31; } } else { - ESP_HW_LOGW(TAG, "lp_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; }