Merge branch 'feat/support_step_notify_on_h2eco5' into 'master'

feat(pcnt): support step_notify on esp32h2 eco5

Closes IDF-11394

See merge request espressif/esp-idf!35516
This commit is contained in:
Chen Ji Chang
2024-12-12 16:23:44 +08:00
7 changed files with 260 additions and 136 deletions
@@ -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