mirror of
https://github.com/espressif/esp-idf.git
synced 2026-09-22 13:01:16 +03:00
fix(ble): change min freq in ble power save
(cherry picked from commit 958c28c41d)
Co-authored-by: cjin <jinchen@espressif.com>
This commit is contained in:
@@ -16,6 +16,7 @@
|
||||
#include "console/console.h"
|
||||
#include "services/gap/ble_svc_gap.h"
|
||||
#include "bleprph.h"
|
||||
#include "soc/rtc.h"
|
||||
|
||||
#if CONFIG_EXAMPLE_EXTENDED_ADV
|
||||
static uint8_t ext_adv_pattern_1[] = {
|
||||
@@ -574,7 +575,7 @@ app_main(void)
|
||||
// automatic light sleep is enabled if tickless idle support is enabled.
|
||||
esp_pm_config_t pm_config = {
|
||||
.max_freq_mhz = CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ,
|
||||
.min_freq_mhz = CONFIG_XTAL_FREQ,
|
||||
.min_freq_mhz = rtc_clk_xtal_freq_get(),
|
||||
#if CONFIG_FREERTOS_USE_TICKLESS_IDLE
|
||||
.light_sleep_enable = true
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user