feat(pcnt): support step_notify on esp32h2 eco5

This commit is contained in:
Chen Jichang
2024-12-09 19:05:04 +08:00
parent 8077b5c7e2
commit dd07504ea5
7 changed files with 260 additions and 136 deletions

View File

@@ -497,6 +497,16 @@ static inline void pcnt_ll_reset_register(int group_id)
PCR.pcnt_conf.pcnt_rst_en = 0;
}
/**
* @brief Check if the step notify is supported
*/
static inline bool pcnt_ll_is_step_notify_supported(int group_id)
{
(void)group_id;
return true;
}
#ifdef __cplusplus
}
#endif