Skip to content

Commit f5cd1d8

Browse files
committed
fix(esp_system): LOGD for the log printing in sleep process
1 parent 5436d1f commit f5cd1d8

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

components/esp_hw_support/port/esp32c5/pmu_param.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -439,7 +439,7 @@ uint32_t get_act_hp_dbias(void)
439439
hp_cali_dbias = 31;
440440
}
441441
} else {
442-
ESP_HW_LOGW(TAG, "hp_cali_dbias not burnt in efuse, use default.");
442+
ESP_HW_LOGD(TAG, "hp_cali_dbias not burnt in efuse, use default.");
443443
}
444444
return hp_cali_dbias;
445445
}
@@ -463,7 +463,7 @@ uint32_t get_act_lp_dbias(void)
463463
lp_cali_dbias = 31;
464464
}
465465
} else {
466-
ESP_HW_LOGW(TAG, "lp_cali_dbias not burnt in efuse, use default.");
466+
ESP_HW_LOGD(TAG, "lp_cali_dbias not burnt in efuse, use default.");
467467
}
468468

469469
return lp_cali_dbias;

components/esp_hw_support/port/esp32c61/pmu_param.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -434,7 +434,7 @@ uint32_t get_act_hp_dbias(void)
434434
hp_cali_dbias = 31;
435435
}
436436
} else {
437-
ESP_HW_LOGW(TAG, "hp_cali_dbias not burnt in efuse, use default.");
437+
ESP_HW_LOGD(TAG, "hp_cali_dbias not burnt in efuse, use default.");
438438
}
439439
return hp_cali_dbias;
440440
}
@@ -457,7 +457,7 @@ uint32_t get_act_lp_dbias(void)
457457
lp_cali_dbias = 31;
458458
}
459459
} else {
460-
ESP_HW_LOGW(TAG, "lp_cali_dbias not burnt in efuse, use default.");
460+
ESP_HW_LOGD(TAG, "lp_cali_dbias not burnt in efuse, use default.");
461461
}
462462
return lp_cali_dbias;
463463
}

components/esp_hw_support/port/esp32p4/pmu_param.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -345,7 +345,7 @@ uint32_t get_act_hp_dbias(void)
345345
hp_cali_dbias = 31;
346346
}
347347
} else {
348-
ESP_HW_LOGW(TAG, "hp_cali_dbias not burnt in efuse, use default.");
348+
ESP_HW_LOGD(TAG, "hp_cali_dbias not burnt in efuse, use default.");
349349
}
350350
return hp_cali_dbias;
351351
}
@@ -367,7 +367,7 @@ uint32_t get_act_lp_dbias(void)
367367
lp_cali_dbias = 31;
368368
}
369369
} else {
370-
ESP_HW_LOGW(TAG, "lp_cali_dbias not burnt in efuse, use default.");
370+
ESP_HW_LOGD(TAG, "lp_cali_dbias not burnt in efuse, use default.");
371371
}
372372
return lp_cali_dbias;
373373
}

0 commit comments

Comments
 (0)