Merge branch 'feature/lp_core_pcnt' into 'master'

feat(ulp): add pulse counter example for lp core

Closes IDF-9137

See merge request espressif/esp-idf!31163
This commit is contained in:
Marius Vikhammer
2024-06-03 12:33:50 +08:00
14 changed files with 331 additions and 0 deletions

View File

@@ -335,6 +335,12 @@ static inline void rtcio_ll_wakeup_disable(int rtcio_num)
static inline void rtcio_ll_intr_enable(int rtcio_num, rtcio_ll_intr_type_t type)
{
LP_IO.pin[rtcio_num].int_type = type;
/* Work around for HW issue,
need to also enable this clk, so that LP_IO.status.status_interrupt can get updated,
and trigger the interrupt on the LP Core
*/
LP_IO.date.clk_en = 1;
}
/**