Merge branch 'fix/lp_core_noreset_under_debug_option_v5.5' into 'release/v5.5'

fix(lp_core): fix build for CONFIG_ULP_NORESET_UNDER_DEBUG=n (v5.5)

See merge request espressif/esp-idf!49869
This commit is contained in:
Jiang Jiang Jian
2026-06-22 19:24:09 +08:00

View File

@@ -120,7 +120,11 @@ esp_err_t ulp_lp_core_run(ulp_lp_core_cfg_t* cfg)
/* Enable reset CPU when going to sleep */
/* Avoid resetting chip in sleep mode when debugger is attached,
otherwise configured HW breakpoints and dcsr.ebreak* bits will be missed */
lp_core_ll_rst_at_sleep_enable(!(CONFIG_ULP_NORESET_UNDER_DEBUG && esp_cpu_dbgr_is_attached()));
#if CONFIG_ULP_NORESET_UNDER_DEBUG
lp_core_ll_rst_at_sleep_enable(!esp_cpu_dbgr_is_attached());
#else
lp_core_ll_rst_at_sleep_enable(true);
#endif
/* Enable JTAG debugging */
lp_core_ll_debug_module_enable(true);
@@ -201,7 +205,11 @@ void ulp_lp_core_stop(void)
lp_core_ll_stall_at_sleep_request(true);
/* Avoid resetting chip in sleep mode when debugger is attached,
otherwise configured HW breakpoints and dcsr.ebreak* bits will be missed */
lp_core_ll_rst_at_sleep_enable(!CONFIG_ULP_NORESET_UNDER_DEBUG);
#if CONFIG_ULP_NORESET_UNDER_DEBUG
lp_core_ll_rst_at_sleep_enable(false);
#else
lp_core_ll_rst_at_sleep_enable(true);
#endif
lp_core_ll_debug_module_enable(true);
}
/* Disable wake-up source and put lp core to sleep */