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

This commit is contained in:
Marius Vikhammer
2024-04-23 12:27:06 +08:00
parent 87d4172ee5
commit 2f1b81cd14
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;
}
/**